Merge pull request #2030 from heper/patch-1

This commit is contained in:
Stephen Beaver 2015-11-05 11:15:32 -05:00
commit 846e29bdd7

View File

@ -129,10 +129,10 @@ $(function() {
if(!msg)
var msg = $.trim(this.value).toLowerCase();
var q = 'Are you Sure you wish to '+ msg +'?';
var q = 'Are you sure you wish to '+ msg +'?';
if ($(this).attr('title') != undefined)
q = 'Are you Sure you wish to '+ $(this).attr('title') + '?';
q = 'Are you sure you wish to '+ $(this).attr('title').toLowerCase() + '?';
if (!confirm(q))
e.preventDefault();
@ -253,4 +253,4 @@ $(function() {
});
});
}(Plugin, $, window, document));
}(jQuery, window, document));
}(jQuery, window, document));