screenfull
Advanced tools
Comparing version 3.2.1 to 3.2.2
/*! | ||
* screenfull | ||
* v3.2.1 - 2017-06-09 | ||
* v3.2.2 - 2017-06-14 | ||
* (c) Sindre Sorhus; MIT License | ||
@@ -9,3 +9,3 @@ */ | ||
var document = window && typeof window.document !== 'undefined' ? window.document : {}; | ||
var document = typeof window !== 'undefined' && typeof window.document !== 'undefined' ? window.document : {}; | ||
var isCommonjs = typeof module !== 'undefined' && module.exports; | ||
@@ -12,0 +12,0 @@ var keyboardAllowed = typeof Element !== 'undefined' && 'ALLOW_KEYBOARD_INPUT' in Element; |
{ | ||
"name": "screenfull", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"description": "Simple wrapper for cross-browser usage of the JavaScript Fullscreen API, which lets you bring the page or any element into fullscreen.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11594