mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
changed attr('data-target') to data('target');
this will extend js interface, to be possible to setup targets for tabs as var content=$('<div class="tab-pane">',{text: 'content'}); var tab=('<li>',{html: $('<a>',{text: 'Main options'})}).addClass('active').data({target: $main,toggle: 'tab'}).appendTo(tabs);
This commit is contained in:
parent
d126d8c6f3
commit
7ee2b6a976
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
|||
Tab.prototype.show = function () {
|
||||
var $this = this.element
|
||||
var $ul = $this.closest('ul:not(.dropdown-menu)')
|
||||
var selector = $this.attr('data-target')
|
||||
var selector = $this.data('target')
|
||||
|
||||
if (!selector) {
|
||||
selector = $this.attr('href')
|
||||
|
|
Loading…
Reference in a new issue