Skip to content

Commit 0f92be3

Browse files
committed
Merge pull request #6 from timklimowicz/master
FIXED: Small typo and missing parens in documentation, which caused error when running.
2 parents 6a04c94 + 082996d commit 0f92be3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ state change then the plugin triggers a `fullscreenerror` event on the
6363
document. Example:
6464

6565
$(document).bind("fullscreenchange", function() {
66-
console.log("Fullscreen " + $(document).fullScreen() ? "on" : "off);
66+
console.log("Fullscreen " + ($(document).fullScreen() ? "on" : "off"));
6767
});
6868

6969
$(document).bind("fullscreenerror", function() {

0 commit comments

Comments
 (0)