Bug #58697
closedjQuery tabs pollution
0%
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
Updated by Markus Klein over 10 years ago
- Status changed from New to Accepted
Possible regression to: https://review.typo3.org/#/c/16780/8/typo3/sysext/extensionmanager/Resources/Private/Templates/UpdateScript/Show.html
or: https://review.typo3.org/#/c/15828/20/typo3/sysext/extensionmanager/Resources/Public/JavaScript/main.js
Either the markup is wrong (id attribute that should only be used with extension configuration forms) or the JS is wrong.
Updated by Christian Kuhn over 10 years ago
- Is Regression changed from No to Yes
Updated by Gerrit Code Review over 10 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/30647
Updated by Gerrit Code Review almost 10 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/30647
Updated by Stefan Neufeind almost 10 years ago
- Status changed from Under Review to Rejected
refactored in CMS7