mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 07:58:34 +02:00
temporary UNSTABLE since codemod went nuts
This commit is contained in:
parent
2257668f9d
commit
f048f99e7f
14 changed files with 32 additions and 39 deletions
|
@ -1,4 +1,3 @@
|
|||
var _ = require('underscore');
|
||||
var Q = require('q');
|
||||
var Backbone = require('backbone');
|
||||
|
||||
|
@ -68,7 +67,7 @@ var Sandbox = Backbone.View.extend({
|
|||
|
||||
initGitShim: function(options) {
|
||||
this.gitShim = new GitShim({
|
||||
beforeCB: this.beforeCommandCB, this)
|
||||
beforeCB: this.beforeCommandCB.bind(this)
|
||||
});
|
||||
},
|
||||
|
||||
|
@ -83,7 +82,7 @@ var Sandbox = Backbone.View.extend({
|
|||
Main.getEventBaton().stealBaton('levelExited', this.levelExited, this);
|
||||
|
||||
this.insertGitShim();
|
||||
}.bind(this)
|
||||
}.bind(this),
|
||||
|
||||
releaseControl: function() {
|
||||
// we will be handling commands that are submitted, mainly to add the sanadbox
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue