Skip to content

Commit

Permalink
Generate dist files
Browse files Browse the repository at this point in the history
sindresorhus committed Feb 18, 2019
1 parent 06af24e commit 18d4c38
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion dist/screenfull.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* screenfull
* v4.0.0 - 2018-12-15
* v4.0.1 - 2019-02-18
* (c) Sindre Sorhus; MIT License
*/
(function () {
@@ -109,6 +109,11 @@
},
exit: function () {
return new Promise(function (resolve) {
if (!this.isFullscreen) {
resolve();
return;
}

var onFullScreenExit = function () {
this.off('change', onFullScreenExit);
resolve();
4 changes: 2 additions & 2 deletions dist/screenfull.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 18d4c38

Please sign in to comment.