Actions
Bug #58697
closedjQuery tabs pollution
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
Extension Manager
Target version:
-
Start date:
2014-05-11
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
no-brainer
Is Regression:
Yes
Sprint Focus:
Description
The first list (<ul>) you output from class.ext_update.php gets converted to jQuery tabs.
This forces you to use tabs, even if you don't want to.
(or use this workaround:
$content .= '<script type="text/javascript">jQuery(function(){jQuery("#typo3-extension-configuration-forms").tabs("destroy");});</script>';)
this can be easily fixed by removing the call to:
$("#typo3-extension-configuration-forms").tabs();
in: /typo3/sysext/extensionmanager/Resources/Public/JavaScript/main.js
Actions