This commit is contained in:
MaxenceBrasselet 2019-06-13 15:08:56 +02:00
Родитель c77729d1e1
Коммит 3a6d109b78
2 изменённых файлов: 15 добавлений и 2 удалений

Просмотреть файл

@ -39,10 +39,23 @@ module.exports = class Player {
container.appendChild(iframe);
iframe.attacheEvent("onload", this._onLoad);
return iframe;
}
// Binding onload callback.
onLoad(onLoadCallback) {
this._onLoadCallback = onLoadCallback;
}
_onLoad() {
if (this._onLoadCallback) {
this._onLoadCallback();
}
}
test() {
console.log("Call test method.", this.embed, );
console.log("Call test method.", this.embed);
}
}

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "furioos-sdk",
"version": "1.0.4",
"version": "1.0.5",
"description": "Furioos SDK to create your own furioos viewer",
"main": "index.js",
"scripts": {