You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unify checking for fullscreen availability (#154) 633ea78
Previously, you had to check if (screenfull && screenfull.enabled) {} before using it. Now you just use if (screenfull.isEnabled) {}.
Breaking for TypeScript users
Require Screenfull to be imported using require when using TypeScript 2664e56
You need to change import screenfull from 'screenfull'; to import screenfull = require('screenfull');