Hi@all,
after enabling this module I got a JS-Error "Drupal.ModuleFilter.activeTab is undefined" on the modules page and nothing is displayed on the page. After a bit of investigation I found the reason:
I have a module named "Field Redirection" which defines a package named "Content" in its info file. For this package Drupal generates a tr-tag with the id="content". The problem is, that there is allready a div with the same id in the theme "Seven".
The JS-script module_filter_tab.js of this module removes all TRs by its IDs. So this script removes also the div with the id ="content" which contains all the other page content.
I suggest to change line 34 in module_filter_tab.js from var $row = $('#' + id); to var $row = $('#' + id, table);. This solves the issue for me.
Thanks,
dendie
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | module_filter_empty-1572320-2.patch | 473 bytes | zambrey |
Comments
Comment #1
braindrift commentedcan someone reproduce the issue?
Comment #2
zambrey commentedYeah, enabled field_redirection module breaks module page.
Attaching patch with your suggestion. Thanks.
Comment #3
greenskin commentedLooks related to this issue: #1515256: Tabbed theme may remove functional content