Skip to content

Instantly share code, notes, and snippets.

@clevertonh
Created June 17, 2015 20:37
Show Gist options
  • Select an option

  • Save clevertonh/db63343e8273c51954e6 to your computer and use it in GitHub Desktop.

Select an option

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.
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