The confirmation dialog should not open after a user has solved the level and trying to see the solution

This commit is contained in:
SOUMYA 2023-06-24 17:07:33 +05:30
parent e169ed42a6
commit 82d5dfc7da

View file

@ -264,6 +264,7 @@ var Level = Sandbox.extend({
var toIssue = this.level.solutionCommand;
var issueFunc = function() {
this.isShowingSolution = true;
this.wasResetAfterSolved = true;
Main.getEventBaton().trigger(
'commandSubmitted',
toIssue
@ -281,6 +282,7 @@ var Level = Sandbox.extend({
return;
}
if(!LevelStore.isLevelSolved(this.level.id)){
// allow them for force the solution
var confirmDefer = Q.defer();
var dialog = intl.getDialog(require('../dialogs/confirmShowSolution'))[0];
@ -300,6 +302,10 @@ var Level = Sandbox.extend({
command.finishWith(deferred);
}, confirmView.getAnimationTime());
});
} else {
issueFunc();
command.finishWith(deferred);
}
},
toggleObjective: function() {