From 6fca2e4f2bc2d7d300e95a98d7e6335d18856806 Mon Sep 17 00:00:00 2001 From: Masashi Hirano Date: Sun, 10 Sep 2017 15:46:05 +0900 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 51963e0..025d807 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,8 @@ Add a listener for when the browser switches in and out of fullscreen. Usage: ``` fullscreenChange(function() { - console.log('switch fullscree'); -} + console.log('switch fullscreen'); +}); ``` ### isFullscreen() ⇒ Boolean Check whether fullscreen is active. From 6fe50d2877c5986d5f1847108abd163796326035 Mon Sep 17 00:00:00 2001 From: Masashi Hirano Date: Sun, 10 Sep 2017 15:46:54 +0900 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 025d807..c2eec93 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Add a listener for when the browser switches in and out of fullscreen. | callback | function | function to be called when the browser switches in and out of fullscreen| Usage: -``` +```js fullscreenChange(function() { console.log('switch fullscreen'); });