Skip to content

Commit 9438016

Browse files
committed
Merge pull request #27 from roberthl/master
Pass jQuery variable in to the setup function
2 parents 7e0c65b + f979546 commit 9438016

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jquery.fullscreen.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* (See http://www.opensource.org/licenses/mit-license)
77
*/
88

9-
(function() {
9+
(function(jQuery) {
1010

1111
/**
1212
* Sets or gets the fullscreen state.
@@ -181,4 +181,4 @@ jQuery.fn["fullScreen"] = fullScreen;
181181
jQuery.fn["toggleFullScreen"] = toggleFullScreen;
182182
installFullScreenHandlers();
183183

184-
})();
184+
})(jQuery);

0 commit comments

Comments
 (0)