chore(operation) setListeners: else

This commit is contained in:
coderaiser 2016-11-09 12:48:52 +02:00
parent b259102d6c
commit 12bb87931e

View file

@ -176,14 +176,14 @@
if (options.noContinue) {
listeners.end(error);
Dialog.alert(TITLE, error)
}
else
} else {
Dialog.confirm(TITLE, error + '\n Continue?')
.then(function() {
emitter.continue();
}, function() {
emitter.abort();
});
}
}
};