aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-28 00:23:44 -0800
committerMark Otto <[email protected]>2012-01-28 00:23:44 -0800
commit1453ea4bf74f66db2d88a73949b6e791fe91f108 (patch)
treee780d232007420a4b150286f0fdc044b703736ab
parentd448e6921e6fc39e4fe7f484da004b2196517478 (diff)
parent4a7d8de204b0d55a62935e01937fd12a8d32be21 (diff)
downloadbootstrap-1453ea4bf74f66db2d88a73949b6e791fe91f108.tar.xz
bootstrap-1453ea4bf74f66db2d88a73949b6e791fe91f108.zip
Merge branch '2.0-wip' of github.com:twitter/bootstrap into 2.0-wip
-rw-r--r--js/tests/unit/bootstrap-typeahead.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/tests/unit/bootstrap-typeahead.js b/js/tests/unit/bootstrap-typeahead.js
index 10b2a3f17..455ed415b 100644
--- a/js/tests/unit/bootstrap-typeahead.js
+++ b/js/tests/unit/bootstrap-typeahead.js
@@ -38,7 +38,7 @@ $(function () {
test("should show menu when query entered", function () {
var $input = $('<input />').typeahead({
- data: ['aa', 'ab', 'ac']
+ source: ['aa', 'ab', 'ac']
})
, typeahead = $input.data('typeahead')
@@ -55,7 +55,7 @@ $(function () {
test("should hide menu when query entered", function () {
stop()
var $input = $('<input />').typeahead({
- data: ['aa', 'ab', 'ac']
+ source: ['aa', 'ab', 'ac']
})
, typeahead = $input.data('typeahead')
@@ -78,7 +78,7 @@ $(function () {
test("should set next item when down arrow is pressed", function () {
var $input = $('<input />').typeahead({
- data: ['aa', 'ab', 'ac']
+ source: ['aa', 'ab', 'ac']
})
, typeahead = $input.data('typeahead')
@@ -111,7 +111,7 @@ $(function () {
test("should set input value to selected item", function () {
var $input = $('<input />').typeahead({
- data: ['aa', 'ab', 'ac']
+ source: ['aa', 'ab', 'ac']
})
, typeahead = $input.data('typeahead')