nice modal view

This commit is contained in:
Peter Cottle 2012-12-19 17:10:21 -08:00
parent 41429e0ce6
commit 277f4f9209
9 changed files with 507 additions and 19 deletions

View file

@ -1035,12 +1035,11 @@ GitEngine.prototype.rebaseInteractive = function(targetSource, currentLocation)
}, this))
.done();
var InteractiveRebaseView = require('../views/miscViews').InteractiveRebaseView;
var InteractiveRebaseView = require('../views/rebaseView').InteractiveRebaseView;
// interactive rebase view will reject or resolve our promise
new InteractiveRebaseView({
deferred: deferred,
toRebase: toRebase,
el: $('#dialogHolder')
toRebase: toRebase
});
};