Tidying up

This commit is contained in:
Sam Potts 2016-01-14 01:14:22 +11:00
parent 7d487553b2
commit 38f554b480
2 changed files with 5 additions and 5 deletions

2
dist/plyr.js vendored

File diff suppressed because one or more lines are too long

View File

@ -13,15 +13,15 @@
if (typeof define === 'function' && define.amd) {
// AMD
define(null, factory);
define(null, function() { factory(root, document) });
} else if (typeof module === 'object') {
// Node, CommonJS-like
module.exports = factory();
module.exports = factory(root, document);
} else {
// Browser globals (root is window)
root.plyr = factory();
root.plyr = factory(root, document);
}
}(this, function() {
}(this, function(window, document) {
'use strict';
/*global YT,$f*/