Project

General

Profile

Bug #28851 ยป 0001-BUGFIX-Problems-with-Cardlayout.patch

first part - Kay Strobach, 2011-08-09 10:45

View differences:

typo3/alt_file_navframe.php
theUrl += "?id=" + id
}
top.fsMod.currentBank = bank;
top.TYPO3.Backend.ContentContainer.setUrl(theUrl);
top.TYPO3.ModuleMenu.App.openInContentFrame(theUrl);
//top.TYPO3.Backend.ContentContainer.setUrl(theUrl);
'.($this->doHighlight ? 'Tree.highlightActiveItem("file", highlightID + "_" + bank);' : '').'
'.(!$GLOBALS['CLIENT']['FORMSTYLE'] ? '' : 'if (linkObj) linkObj.blur(); ').'
typo3/js/extjs/iframepanel.js
/** @private */
setMask: function() {
if (this.doMask) {
this.el.mask(this.maskMessage, 'x-mask-loading-message');
this.el.addClass('t3-mask-loading');
// add an onClick handler to remove the mask while clicking on the loading message
// useful if user cancels loading and wants to access the content again
this.el.child('.x-mask-loading-message').on(
'click',
//make sure, that the mask is rendered after the container and
//fits the full dimensions
new Ext.util.DelayedTask(
function() {
this.el.unmask();
this.el.mask(this.maskMessage, 'x-mask-loading-message');
this.el.addClass('t3-mask-loading');
// add an onClick handler to remove the mask while clicking on the loading message
// useful if user cancels loading and wants to access the content again
this.el.child('.x-mask-loading-message').on(
'click',
function() {
this.el.unmask();
},
this
);
},
this
);
).delay(200);
}
},
    (1-1/1)