Started on plugin setup

This commit is contained in:
Sam Potts 2015-04-15 21:47:50 +10:00
parent 1532f2ab23
commit 7345f656c1
2 changed files with 581 additions and 256 deletions

File diff suppressed because it is too large Load Diff

18
src/js/plyr.youtube.js Normal file
View File

@ -0,0 +1,18 @@
// ==========================================================================
// Plyr
// plyr.youtube.js v1.1.4
// https://github.com/selz/plyr
// License: The MIT License (MIT)
// ==========================================================================
(function (api) {
"use strict";
api.youtube = {
setup: function() {
console.log("Setup youtube");
console.log(this);
}
};
}(this.plyr.plugins = this.plyr.plugins || {}));