Jin Lu

Results 3 comments of Jin Lu

I agreed, the requests for static files (images, javascripts css and so on) should be excluded from report, at least in the "REQUESTED FILES (URLS)" panel, otherwise it's really difficult...

@wykhuh the only working code I found is: ``` module.exports = function(sequelize, DataTypes) { var Account = sequelize.define('Account', { name: { type: DataTypes.STRING } }, { associate: function(models) { Account.hasMany(models.Transactions)...

I use window.onbeforeunload event instead of window.onunload because the window.onunload also trigger when refresh the window, which is unwanted.