This commit is contained in:
MaxenceBrasselet 2019-06-18 15:09:13 +02:00
Родитель 3457cbc630
Коммит 44e4fd58b5
2 изменённых файлов: 8 добавлений и 5 удалений

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

@ -31,11 +31,13 @@ module.exports = class Player {
console.log("Instanciate the player", sharedLink, containerId, options);
// Create the iframe into the given container.
this.embed = this._createIframe(sharedLink, containerId);
this.sharedLink = sharedLink;
this.containerId = containerId;
this.embed = this._createIframe();
}
_createIframe(sharedLink, containerId) {
const container = document.getElementById(containerId);
_createIframe(containerId) {
const container = document.getElementById(this.containerId);
if (!container) {
throw "Cannot find the container";
@ -43,7 +45,6 @@ module.exports = class Player {
// Create the iframe element.
const iframe = document.createElement("iframe");
iframe.setAttribute("src", sharedLink);
iframe.setAttribute("id", "myIframe");
iframe.style.width = "100%";
@ -62,6 +63,8 @@ module.exports = class Player {
console.log("Message", e);
switch(e.data) {
case _eventNames.LOAD:
this.embed.setAttribute("src", this.sharedLink);
if (this._onLoadCallback) {
this._onLoadCallback();
}

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

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