mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 00:40:07 +02:00
Revert "level compare sttings progress"
This reverts commit 8d23d92456
.
This commit is contained in:
parent
c434163c30
commit
6d58c928ae
2 changed files with 1 additions and 36 deletions
|
@ -53,7 +53,6 @@ var LevelBuilder = Level.extend({
|
|||
|
||||
this.startDialogObj = undefined;
|
||||
this.definedGoal = false;
|
||||
this.compareLevelSettings = undefined;
|
||||
|
||||
// we wont be using this stuff, and its to delete to ensure we overwrite all functions that
|
||||
// include that functionality
|
||||
|
@ -281,34 +280,6 @@ var LevelBuilder = Level.extend({
|
|||
});
|
||||
}
|
||||
|
||||
if (this.compareLevelSettings === undefined) {
|
||||
var askForCompare = Q.defer();
|
||||
chain = chain.then(function() {
|
||||
return askForCompare.promise;
|
||||
});
|
||||
|
||||
var askForCompareView = new ConfirmCancelTerminal({
|
||||
markdowns: [
|
||||
'You havent specified compare settings, would you like to?'
|
||||
]
|
||||
});
|
||||
askForCompareView.getPromise()
|
||||
.then(_.bind(function() {
|
||||
// oh boy this is complex
|
||||
var whenEditedDialog = Q.defer();
|
||||
// the undefined here is the command that doesnt need resolving just yet...
|
||||
this.editDialog(undefined, whenEditedDialog);
|
||||
return whenEditedDialog.promise;
|
||||
}, this))
|
||||
.fail(function() {
|
||||
// default compare settings
|
||||
})
|
||||
.done(function() {
|
||||
askForCompare.resolve();
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
if (this.startDialogObj === undefined) {
|
||||
var askForStartDeferred = Q.defer();
|
||||
chain = chain.then(function() {
|
||||
|
@ -358,13 +329,6 @@ var LevelBuilder = Level.extend({
|
|||
if (this.startDialogObj) {
|
||||
compiledLevel.startDialog = {'en_US': this.startDialogObj};
|
||||
}
|
||||
|
||||
if (this.compareLevelSettings) {
|
||||
// merge in the object
|
||||
_.each(Object.keys(this.compareLevelSettings), function(key) {
|
||||
compiledLevel[key] = this.compareLevelSettings[key];
|
||||
});
|
||||
}
|
||||
return compiledLevel;
|
||||
},
|
||||
|
||||
|
|
1
todo.txt
1
todo.txt
|
@ -4,6 +4,7 @@ Big Things
|
|||
|
||||
Origin things:
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
[ ] polish visual layout?? needed?
|
||||
|
||||
Medium things:
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue