christianbarkowsky / contao-tabcontrol

Contao Extension :: Tabcontrol
https://brkwsky.de/tabcontrol-contao
8 stars 4 forks source link

Firefox Probleme #10

Closed Messa1 closed 10 years ago

Messa1 commented 10 years ago

Ich musst eine alte 2.9.3 Installation mit Tabs erweitern. Nun habe ich die Erweiterung installiert, funktioniert soweit gut. Nur im Firefox wird die class="selected" bei falsch gesetzt und somit funktioniert das ganze nicht.

Hast du eventuell einen Tipp für mich?
Messa1 commented 10 years ago

Oky Lösung ist in "ce_tabcontrol_tab.tpl" den Scrip oben bearbeiten und ce_tabcontrol_tabs bei der Auswahl der Tabs mitgeben.

<!-- indexer::stop -->
<script type="text/javascript">
/* <![CDATA[ */
    function loadTabControls() {
        $$('div.mod_article').each(function(s) {
            new TabControl(s, {
                behaviour: '<?php echo $this->behaviour; ?>',
                tabs: s.getElements('.<?php echo $this->class; ?>_tabs <?php echo $this->tabsSelector; ?>'),
                panes: s.getElements('<?php echo $this->panesSelector; ?>'),
                selectedClass: 'selected',
                hoverClass: 'hover'
            });
        });
    }

    /*
     * Bootstrap
     */
    window.addEvent('domready', loadTabControls);
/* ]]> */
</script>
<!-- indexer::continue -->