1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-27 15:19:52 +02:00

changed event should be change event

This commit is contained in:
Jacob Thornton
2011-09-29 22:21:55 -07:00
parent 24b05fe94a
commit b827303511
3 changed files with 8 additions and 8 deletions

View File

@@ -43,7 +43,7 @@
activate($this.parent('li'), $ul)
activate($href, $href.parent())
$this.trigger("changed", {from:current, to:href})
$this.trigger("change", { from: current, to: href })
}
}

View File

@@ -45,8 +45,8 @@ $(function () {
$("#qunit-runoff").empty()
})
test( "should trigger changed event on activate", function () {
test( "should trigger change event on activate", function () {
var $tabsHTML = $('<ul class="tabs">'
+ '<li class="active"><a href="#home">Home</a></li>'
+ '<li><a href="#profile">Profile</a></li>'
@@ -54,13 +54,13 @@ $(function () {
, changeCount = 0
, from
, to;
$tabsHTML.tabs().bind( "changed", function (e, c){
$tabsHTML.tabs().bind( "change", function (e, c){
from = c.from;
to = c.to;
changeCount++
})
$tabsHTML.tabs().find('a').last().click()
equals(from, "#home")