UI dependency graph cleanup

This commit is contained in:
kayone
2013-10-08 18:43:41 -07:00
parent 86ea33b638
commit 4948d0608b
87 changed files with 1119 additions and 735 deletions

View File

@@ -1,9 +1,9 @@
'use strict';
define(
[
'app',
'vent',
'backgrid'
], function (App, Backgrid) {
], function (vent, Backgrid) {
return Backgrid.Row.extend({
className: 'log-file-row',
@@ -13,7 +13,7 @@ define(
},
_showContents: function () {
App.vent.trigger(App.Commands.ShowLogFile, { model: this.model });
vent.trigger(vent.Commands.ShowLogFile, { model: this.model });
}
});
});