before refactor

This commit is contained in:
Peter Cottle 2012-12-25 17:39:31 -08:00
parent ee02aea414
commit bbdaa37abd
5 changed files with 30 additions and 24 deletions

View file

@ -0,0 +1,17 @@
var _ = require('underscore');
var Backbone = require('backbone');
var Main = require('../main');
function InputWaterfall() {
Main.getEvents().on('processCommand', this.process)
};
InputWaterfall.prototype.listen = function() {
Main.getEvents().
};
exports.InputWaterfall = InputWaterfall;

View file

@ -28,7 +28,7 @@ function GitEngine(options) {
this.commandOptions = {};
this.generalArgs = [];
this.events.on('processCommand', _.bind(this.dispatch, this));
this.events.on('processCommand', this.dispatch, this);
// backbone or something uses _.uniqueId, so we make our own here
this.uniqueId = (function() {

View file

@ -32,10 +32,7 @@ var CommandBuffer = Backbone.Model.extend({
},
initialize: function(options) {
require('../app').getEvents().on('gitCommandReady', _.bind(
this.addCommand, this
));
require('../app').getEvents().on('gitCommandReady', this.addCommand, this);
options.collection.bind('add', this.addCommand, this);
this.buffer = [];

View file

@ -37,9 +37,7 @@ function GitVisuals(options) {
this.deferred = [];
this.events = require('../app').getEvents();
this.events.on('refreshTree', _.bind(
this.refreshTree, this
));
this.events.on('refreshTree', this.refreshTree, this);
}
GitVisuals.prototype.defer = function(action) {