0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

fix opera bug \o/ !!!! #1776

This commit is contained in:
Jacob Thornton 2012-04-14 23:24:19 -07:00
parent cf4924764c
commit 1ca1ef94ee
3 changed files with 6 additions and 8 deletions

Binary file not shown.

View File

@ -94,12 +94,11 @@
this.activeTarget = target
this.$body
.find(this.selector).parent('.active')
$(this.selector)
.parent('.active')
.removeClass('active')
active = this.$body
.find(this.selector + '[href="' + target + '"]')
active = $(this.selector + '[href="' + target + '"]')
.parent('li')
.addClass('active')

View File

@ -94,12 +94,11 @@
this.activeTarget = target
this.$body
.find(this.selector).parent('.active')
$(this.selector)
.parent('.active')
.removeClass('active')
active = this.$body
.find(this.selector + '[href="' + target + '"]')
active = $(this.selector + '[href="' + target + '"]')
.parent('li')
.addClass('active')