Created
June 17, 2015 20:37
-
-
Save clevertonh/db63343e8273c51954e6 to your computer and use it in GitHub Desktop.
Quando usado o componente de ABA do Twitter Bootstrap junto com o CodeCharge Studio 4 ocorre conflito das LIBs de AJAX do CodeCharge. As ABAs são ocultadas após clicar sobre elas. Com o código abaixo se resolve esse problema.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery.noConflict(); | |
| jQuery(function(){ | |
| jQuery('a[data-toggle="tab"]').on('shown.bs.tab', function(e){ | |
| jQuery(e.relatedTarget).show(); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment