Commit fd194abc authored by Valentin Skripnikov's avatar Valentin Skripnikov

Fix registry-toolbar-button.conf.xml: скрытие контента кнопки при выборе группы реестров

parent b11924a0
......@@ -38,7 +38,7 @@ function RegistryToolbarButtonExt(iframeSrc, faIcon, content) {
jQuery('.rtable-focusable').closest('table').addClass("registry-records-table");
var registryRecordsTable = jQuery('.registry-records-table');
var contentContainer = jQuery('<div id="registry-toolbar-button-content" style="height:100%; width:100%"></div>');
var contentContainer = jQuery('<div id="registry-toolbar-button-content" style="height:100%; width:100%; position:fixed;"></div>');
var contentElement = content ? content : jQuery('<iframe id="registry-toolbar-button-ext-iframe" src="' + iframeSrc + '" height="100%" width="100%"></iframe>');
if (jQuery('#registry-toolbar-button-content').length === 0) {
registryRecordsTable.after(contentContainer);
......@@ -55,15 +55,6 @@ function RegistryToolbarButtonExt(iframeSrc, faIcon, content) {
}
});
/**
* 19.01.2018 bugfix
* Если открыли другой реестр или группу реестров, то необходимо
* почистить за собой, чтобы слой не перекрывал необходимый контент
*/
button.on('DOMNodeRemovedFromDocument', function() {
jQuery('#registry-toolbar-button-content').remove();
});
function showRegistry() {
registryRecordsTable.show();
contentElement.remove();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment