[desktop] hide modal window's mask

This commit is contained in:
Maxim Kadushkin 2020-03-17 18:06:09 +03:00
parent f9d5ba38e5
commit 46bd7b76a5

View file

@ -145,6 +145,11 @@ define([
} }
native.execCommand('webapps:features', JSON.stringify({version: config.version, eventloading:true, titlebuttons:true})); native.execCommand('webapps:features', JSON.stringify({version: config.version, eventloading:true, titlebuttons:true}));
// hide mask for modal window
var style = document.createElement('style');
style.appendChild(document.createTextNode('.modals-mask{opacity:0;}'));
document.getElementsByTagName('head')[0].appendChild(style);
} }
var _serializeHeaderButton = function(action, config) { var _serializeHeaderButton = function(action, config) {