summaryrefslogtreecommitdiffstats
path: root/dist/svg.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2017-03-18 13:18:18 +0100
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2017-03-18 13:18:18 +0100
commit50ab9266a8a51a281b835dd90e72990c9c775d4f (patch)
tree0c8c6af85b4f9122cca09dfe9b70b499c2ea22aa /dist/svg.js
parentc482c602500494c8f30357284fd873046296ab65 (diff)
downloadsvg.js-50ab9266a8a51a281b835dd90e72990c9c775d4f.tar.gz
svg.js-50ab9266a8a51a281b835dd90e72990c9c775d4f.zip
missed one
Diffstat (limited to 'dist/svg.js')
-rw-r--r--dist/svg.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/svg.js b/dist/svg.js
index 9ed3d36..80dbf67 100644
--- a/dist/svg.js
+++ b/dist/svg.js
@@ -6,7 +6,7 @@
* @copyright Wout Fierens <wout@mick-wout.com>
* @license MIT
*
-* BUILT: Sat Mar 18 2017 13:11:58 GMT+0100 (Mitteleuropäische Zeit)
+* BUILT: Sat Mar 18 2017 13:17:57 GMT+0100 (Mitteleuropäische Zeit)
*/;
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
@@ -5424,7 +5424,7 @@ function idFromReference(url) {
// Create matrix array for looping
var abcdef = 'abcdef'.split('')
// Add CustomEvent to IE9 and IE10
-if (typeof CustomEvent !== 'function') {
+if (typeof window.CustomEvent !== 'function') {
// Code from: https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent
var CustomEvent = function(event, options) {
options = options || { bubbles: false, cancelable: false, detail: undefined }