odoo/addons/website/static/src/js/website.mobile.js

32 lines
1.1 KiB
JavaScript

(function () {
'use strict';
var website = openerp.website;
website.EditorBar.include({
events: _.extend({}, website.EditorBar.prototype.events, {
'click a[data-action=show-mobile-preview]': 'mobilePreview',
}),
mobilePreview: function () {
(new website.MobilePreview()).appendTo($(document.body));
},
});
website.MobilePreview = openerp.Widget.extend({
template: 'website.mobile_preview',
events: {
'hidden.bs.modal': 'destroy'
},
start: function () {
if (!window.location.origin) { // fix for ie9
window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '') + '/';
}
document.getElementById("mobile-viewport").src = window.location.origin + window.location.pathname + "#mobile-preview";
this.$el.modal();
},
destroy: function () {
$('.modal-backdrop').remove();
this._super();
},
});
})();