Actions
Bug #24242
closedcommon.js resets TYPO3 namespace
Start date:
2010-11-30
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If some JavaScript already registered a class in the global namespace TYPO3. prior to loading common.js in the backend.php (which is the case if added using $GLOBALS['TBE_TEMPLATE']->getPageRenderer()) the class gets overwritten by common.js with
var TYPO3 = {
...
};
Id suggest to do it that way:
var TYPO3 = TYPO3 ? TYPO3 : {};
var TYPO3 = Ext.apply(TYPO3,{
...
});
see diff attached
gRTz pekue
(issue imported from #M16614)
Files
Actions