validate all alertify strings by default. require 'force' argument to bypass

pull/1/head
ansuz 8 years ago
parent bd42a7d176
commit cb5e01815c

@ -961,7 +961,7 @@ define([
} else { } else {
callback(); callback();
} }
common.alert(Messages.movedToTrash); common.alert(Messages.movedToTrash, undefined, true);
return; return;
}); });
}); });
@ -1292,8 +1292,9 @@ define([
$(window).off('keyup', handler); $(window).off('keyup', handler);
}; };
common.alert = function (msg, cb) { common.alert = function (msg, cb, force) {
cb = cb || function () {}; cb = cb || function () {};
if (force !== true) { msg = fixHTML(msg); }
var keyHandler = listenForKeys(function (e) { // yes var keyHandler = listenForKeys(function (e) { // yes
findOKButton().click(); findOKButton().click();
}); });
@ -1306,9 +1307,10 @@ define([
}); });
}; };
common.prompt = function (msg, def, cb, opt) { common.prompt = function (msg, def, cb, opt, force) {
opt = opt || {}; opt = opt || {};
cb = cb || function () {}; cb = cb || function () {};
if (force !== true) { msg = fixHTML(msg); }
var keyHandler = listenForKeys(function (e) { // yes var keyHandler = listenForKeys(function (e) { // yes
findOKButton().click(); findOKButton().click();
@ -1329,9 +1331,11 @@ define([
}); });
}; };
common.confirm = function (msg, cb, opt) { common.confirm = function (msg, cb, opt, force) {
opt = opt || {}; opt = opt || {};
cb = cb || function () {}; cb = cb || function () {};
if (force !== true) { msg = fixHTML(msg); }
var keyHandler = listenForKeys(function (e) { var keyHandler = listenForKeys(function (e) {
findOKButton().click(); findOKButton().click();
}, function (e) { }, function (e) {

Loading…
Cancel
Save