Iframe.js
435 Bytes
define(function () {
'use strict';
function Iframe() {
}
Iframe.prototype = {
transferToVM: function (dm) {
dm.width = dm.width ? (dm.width+"px") : "100%";
dm.height = dm.height ? (dm.height+"px") : "";
return {
url: dm.iframe_path,
width: dm.width,
height: dm.height
};
}
};
return Iframe;
});