diff options
Diffstat (limited to 'ui/form.js')
-rw-r--r-- | ui/form.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/form.js b/ui/form.js index fb0a3c6cf..60b052277 100644 --- a/ui/form.js +++ b/ui/form.js @@ -1,4 +1,6 @@ ( function( factory ) { + "use strict"; + if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. @@ -8,7 +10,8 @@ // Browser globals factory( jQuery ); } -} ( function( $ ) { +} )( function( $ ) { +"use strict"; // Support: IE8 Only // IE8 does not support the form attribute and when it is supplied. It overwrites the form prop @@ -17,4 +20,4 @@ return $.fn._form = function() { return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form ); }; -} ) ); +} ); |