Display properties modal in the secure iframe

This commit is contained in:
yflory
2020-04-07 17:04:39 +02:00
parent ca8c50ca37
commit 43904df0fb
3 changed files with 19 additions and 5 deletions

View File

@@ -73,6 +73,20 @@ define([
displayed = modal;
};
// Properties modal
create['properties'] = function (data) {
require(['/common/inner/properties.js'], function (Properties) {
Properties.getPropertiesModal(common, {
onClose: function () {
hideIframe();
}
}, function (e) {
if (e) { console.error(e); }
displayed = modal;
});
});
};
// Access modal
create['access'] = function (data) {
require(['/common/inner/access.js'], function (Access) {