Commit 0dc83955 authored by Chris Rebert's avatar Chris Rebert

use strict mode for jqueryVersionCheck; fixes #15535

parent 82d786b5
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
], ],
"jqueryVersionCheck": [ "jqueryVersionCheck": [
"+function ($) {", "+function ($) {",
" 'use strict';",
" var version = $.fn.jquery.split(' ')[0].split('.')", " var version = $.fn.jquery.split(' ')[0].split('.')",
" if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {", " if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {",
" throw new Error('Bootstrap\\'s JavaScript requires jQuery version 1.9.1 or higher')", " throw new Error('Bootstrap\\'s JavaScript requires jQuery version 1.9.1 or higher')",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment