Skip to content

Commit ac0a2a3

Browse files
committed
Restore dist
1 parent 6639de5 commit ac0a2a3

File tree

1 file changed

+72
-72
lines changed

1 file changed

+72
-72
lines changed

dist/plotly-cartesian.js

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -87391,19 +87391,19 @@ module.exports = $gOPD;
8739187391
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
8739287392

8739387393
"use strict";
87394-
87395-
87396-
var isBrowser = __webpack_require__(24200)
87397-
var hasHover
87398-
87399-
if (typeof __webpack_require__.g.matchMedia === 'function') {
87400-
hasHover = !__webpack_require__.g.matchMedia('(hover: none)').matches
87401-
}
87402-
else {
87403-
hasHover = isBrowser
87404-
}
87405-
87406-
module.exports = hasHover
87394+
87395+
87396+
var isBrowser = __webpack_require__(24200)
87397+
var hasHover
87398+
87399+
if (typeof __webpack_require__.g.matchMedia === 'function') {
87400+
hasHover = !__webpack_require__.g.matchMedia('(hover: none)').matches
87401+
}
87402+
else {
87403+
hasHover = isBrowser
87404+
}
87405+
87406+
module.exports = hasHover
8740787407

8740887408

8740987409
/***/ }),
@@ -87412,30 +87412,30 @@ module.exports = hasHover
8741287412
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
8741387413

8741487414
"use strict";
87415-
87416-
87417-
var isBrowser = __webpack_require__(24200)
87418-
87419-
function detect() {
87420-
var supported = false
87421-
87422-
try {
87423-
var opts = Object.defineProperty({}, 'passive', {
87424-
get: function() {
87425-
supported = true
87426-
}
87427-
})
87428-
87429-
window.addEventListener('test', null, opts)
87430-
window.removeEventListener('test', null, opts)
87431-
} catch(e) {
87432-
supported = false
87433-
}
87434-
87435-
return supported
87436-
}
87437-
87438-
module.exports = isBrowser && detect()
87415+
87416+
87417+
var isBrowser = __webpack_require__(24200)
87418+
87419+
function detect() {
87420+
var supported = false
87421+
87422+
try {
87423+
var opts = Object.defineProperty({}, 'passive', {
87424+
get: function() {
87425+
supported = true
87426+
}
87427+
})
87428+
87429+
window.addEventListener('test', null, opts)
87430+
window.removeEventListener('test', null, opts)
87431+
} catch(e) {
87432+
supported = false
87433+
}
87434+
87435+
return supported
87436+
}
87437+
87438+
module.exports = isBrowser && detect()
8743987439

8744087440

8744187441
/***/ }),
@@ -88021,41 +88021,41 @@ module.exports = function shimNumberIsNaN() {
8802188021
/***/ (function(module) {
8802288022

8802388023
"use strict";
88024-
88025-
88026-
/**
88027-
* Is this string all whitespace?
88028-
* This solution kind of makes my brain hurt, but it's significantly faster
88029-
* than !str.trim() or any other solution I could find.
88030-
*
88031-
* whitespace codes from: http://en.wikipedia.org/wiki/Whitespace_character
88032-
* and verified with:
88033-
*
88034-
* for(var i = 0; i < 65536; i++) {
88035-
* var s = String.fromCharCode(i);
88036-
* if(+s===0 && !s.trim()) console.log(i, s);
88037-
* }
88038-
*
88039-
* which counts a couple of these as *not* whitespace, but finds nothing else
88040-
* that *is* whitespace. Note that charCodeAt stops at 16 bits, but it appears
88041-
* that there are no whitespace characters above this, and code points above
88042-
* this do not map onto white space characters.
88043-
*/
88044-
88045-
module.exports = function(str){
88046-
var l = str.length,
88047-
a;
88048-
for(var i = 0; i < l; i++) {
88049-
a = str.charCodeAt(i);
88050-
if((a < 9 || a > 13) && (a !== 32) && (a !== 133) && (a !== 160) &&
88051-
(a !== 5760) && (a !== 6158) && (a < 8192 || a > 8205) &&
88052-
(a !== 8232) && (a !== 8233) && (a !== 8239) && (a !== 8287) &&
88053-
(a !== 8288) && (a !== 12288) && (a !== 65279)) {
88054-
return false;
88055-
}
88056-
}
88057-
return true;
88058-
}
88024+
88025+
88026+
/**
88027+
* Is this string all whitespace?
88028+
* This solution kind of makes my brain hurt, but it's significantly faster
88029+
* than !str.trim() or any other solution I could find.
88030+
*
88031+
* whitespace codes from: http://en.wikipedia.org/wiki/Whitespace_character
88032+
* and verified with:
88033+
*
88034+
* for(var i = 0; i < 65536; i++) {
88035+
* var s = String.fromCharCode(i);
88036+
* if(+s===0 && !s.trim()) console.log(i, s);
88037+
* }
88038+
*
88039+
* which counts a couple of these as *not* whitespace, but finds nothing else
88040+
* that *is* whitespace. Note that charCodeAt stops at 16 bits, but it appears
88041+
* that there are no whitespace characters above this, and code points above
88042+
* this do not map onto white space characters.
88043+
*/
88044+
88045+
module.exports = function(str){
88046+
var l = str.length,
88047+
a;
88048+
for(var i = 0; i < l; i++) {
88049+
a = str.charCodeAt(i);
88050+
if((a < 9 || a > 13) && (a !== 32) && (a !== 133) && (a !== 160) &&
88051+
(a !== 5760) && (a !== 6158) && (a < 8192 || a > 8205) &&
88052+
(a !== 8232) && (a !== 8233) && (a !== 8239) && (a !== 8287) &&
88053+
(a !== 8288) && (a !== 12288) && (a !== 65279)) {
88054+
return false;
88055+
}
88056+
}
88057+
return true;
88058+
}
8805988059

8806088060

8806188061
/***/ }),

0 commit comments

Comments
 (0)