Skip to content

Commit 27b4e03

Browse files
committed
Make IIFE syntax valid
1 parent c1b7912 commit 27b4e03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jquery.stellar.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
}
8282

8383
return prefix;
84-
})(),
84+
}()),
8585

8686
setTransform = function($elem, val, dimension /* 'X' or 'Y' */) {
8787
var currentTransform = $elem.css(vendorPrefix + 'transform');
@@ -556,7 +556,7 @@
556556
function(callback, element){
557557
window.setTimeout(callback, 1000 / 60);
558558
};
559-
})();
559+
}());
560560

561561
this._animationLoop = function(){
562562
requestAnimFrame(self._animationLoop);
@@ -598,4 +598,4 @@
598598

599599
//Expose the plugin class so it can be modified
600600
window.Stellar = Plugin;
601-
})(jQuery, window, document);
601+
}(jQuery, window, document));

0 commit comments

Comments
 (0)