Skip to content

Commit f8a8ede

Browse files
committed
Update to provide consistent usage of IIFE jQuery pattern
1 parent 5fe1f90 commit f8a8ede

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jQuery(function($){
115115
*
116116
* Plugin by BrunoLM: http://stackoverflow.com/a/3855394/463471
117117
*/
118-
(function($) {
118+
jQuery(function($) {
119119
$.QueryString = (function(a) {
120120
if (a == "") return {};
121121
var b = {};
@@ -127,4 +127,4 @@ jQuery(function($){
127127
}
128128
return b;
129129
})(window.location.search.substr(1).split('&'))
130-
})(jQuery);
130+
});

0 commit comments

Comments
 (0)