We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ca0c8f commit 3e685f6Copy full SHA for 3e685f6
jquery.maxsubmit.js
@@ -2,7 +2,7 @@
2
* Copyright 2013-2014 Academe Computing Ltd
3
* Released under the MIT license
4
* Author: Jason Judge <[email protected]>
5
- * Version: 1.1.0
+ * Version: 1.1.1
6
*/
7
/**
8
* jquery.maxsubmit.js
@@ -41,7 +41,8 @@
41
// The function that will display the confirm message.
42
// Replace this with something fancy such as jquery.ui if you wish.
43
44
- confirm_display: function(form_count = '') {
+ confirm_display: function(form_count) {
45
+ if (typeof(form_count) === 'undefined') form_count = '';
46
return confirm(
47
settings
48
.max_exceeded_message
0 commit comments