mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 16:08:34 +02:00
awesome ok can finish a level now:
This commit is contained in:
parent
5242afc2f1
commit
c5f4d6e3f2
2 changed files with 6 additions and 6 deletions
|
@ -16854,9 +16854,9 @@ var LevelBuilder = Level.extend({
|
||||||
deferred: whenDoneEditing
|
deferred: whenDoneEditing
|
||||||
});
|
});
|
||||||
whenDoneEditing.promise
|
whenDoneEditing.promise
|
||||||
.then(function(levelObj) {
|
.then(_.bind(function(levelObj) {
|
||||||
this.startDialog = levelObj;
|
this.startDialog = levelObj;
|
||||||
})
|
}, this))
|
||||||
.fail(function() {
|
.fail(function() {
|
||||||
// nothing to do, they dont want to edit it apparently
|
// nothing to do, they dont want to edit it apparently
|
||||||
})
|
})
|
||||||
|
@ -20239,9 +20239,9 @@ var LevelBuilder = Level.extend({
|
||||||
deferred: whenDoneEditing
|
deferred: whenDoneEditing
|
||||||
});
|
});
|
||||||
whenDoneEditing.promise
|
whenDoneEditing.promise
|
||||||
.then(function(levelObj) {
|
.then(_.bind(function(levelObj) {
|
||||||
this.startDialog = levelObj;
|
this.startDialog = levelObj;
|
||||||
})
|
}, this))
|
||||||
.fail(function() {
|
.fail(function() {
|
||||||
// nothing to do, they dont want to edit it apparently
|
// nothing to do, they dont want to edit it apparently
|
||||||
})
|
})
|
||||||
|
|
|
@ -214,9 +214,9 @@ var LevelBuilder = Level.extend({
|
||||||
deferred: whenDoneEditing
|
deferred: whenDoneEditing
|
||||||
});
|
});
|
||||||
whenDoneEditing.promise
|
whenDoneEditing.promise
|
||||||
.then(function(levelObj) {
|
.then(_.bind(function(levelObj) {
|
||||||
this.startDialog = levelObj;
|
this.startDialog = levelObj;
|
||||||
})
|
}, this))
|
||||||
.fail(function() {
|
.fail(function() {
|
||||||
// nothing to do, they dont want to edit it apparently
|
// nothing to do, they dont want to edit it apparently
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue