File: /home/barbeatleanalyti/www/public_html/webmail/modules/CoreWebclient/js/popups/EmbedHtmlPopup.js
'use strict';
var
_ = require('underscore'),
ko = require('knockout'),
CAbstractPopup = require('%PathToCoreWebclientModule%/js/popups/CAbstractPopup.js')
;
/**
* @constructor
*/
function CEmbedHtmlPopup()
{
CAbstractPopup.call(this);
this.htmlEmbed = ko.observable('');
}
_.extendOwn(CEmbedHtmlPopup.prototype, CAbstractPopup.prototype);
CEmbedHtmlPopup.prototype.PopupTemplate = 'CoreWebclient_EmbedHtmlPopup';
CEmbedHtmlPopup.prototype.onOpen = function (sHtmlEmbed)
{
this.htmlEmbed(sHtmlEmbed);
};
CEmbedHtmlPopup.prototype.close = function ()
{
this.closePopup();
this.htmlEmbed('');
};
module.exports = new CEmbedHtmlPopup();