summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/jquery
diff options
context:
space:
mode:
authorheper <heper@users.noreply.github.com>2015-11-05 17:09:47 +0100
committerheper <heper@users.noreply.github.com>2015-11-05 17:09:47 +0100
commit586a79d5f37ecf4d37e3e84794a917fefb956bb6 (patch)
tree57c945d302ba06be4c698414eb608731ece6815e /src/usr/local/www/jquery
parentfac720f85e1cf977b3274b73e802b3be51974442 (diff)
downloadpfsense-586a79d5f37ecf4d37e3e84794a917fefb956bb6.zip
pfsense-586a79d5f37ecf4d37e3e84794a917fefb956bb6.tar.gz
change onclick delete msg toLowerCase()
Diffstat (limited to 'src/usr/local/www/jquery')
-rw-r--r--src/usr/local/www/jquery/pfSense.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/jquery/pfSense.js b/src/usr/local/www/jquery/pfSense.js
index 45834e5..77234e7 100644
--- a/src/usr/local/www/jquery/pfSense.js
+++ b/src/usr/local/www/jquery/pfSense.js
@@ -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)); \ No newline at end of file
+}(jQuery, window, document));
OpenPOWER on IntegriCloud