aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/plyr.js
diff options
context:
space:
mode:
authorSam Potts <me@sampotts.me>2016-08-06 11:08:33 +1000
committerSam Potts <me@sampotts.me>2016-08-06 11:08:33 +1000
commitb578fb48408979432acfa481c75ec0bb57409ecb (patch)
treec32ac1261389a091aeffa144d8d9179a75933482 /src/js/plyr.js
parentf18d9589eb4722db53763e25b8b8023d7ebc0e18 (diff)
parent56d9730d0abeaadfd69eff524215fc783a940b9d (diff)
downloadplyr-b578fb48408979432acfa481c75ec0bb57409ecb.tar.lz
plyr-b578fb48408979432acfa481c75ec0bb57409ecb.tar.xz
plyr-b578fb48408979432acfa481c75ec0bb57409ecb.zip
Merge branch 'master' of https://github.com/Selz/plyr
Diffstat (limited to 'src/js/plyr.js')
-rw-r--r--src/js/plyr.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/plyr.js b/src/js/plyr.js
index f01866bd..fc49a123 100644
--- a/src/js/plyr.js
+++ b/src/js/plyr.js
@@ -16,7 +16,7 @@
module.exports = factory(root, document);
} else if (typeof define === 'function' && define.amd) {
// AMD
- define(null, function() { factory(root, document) });
+ define([], function () { return factory(root, document); });
} else {
// Browser globals (root is window)
root.plyr = factory(root, document);