diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-01-03 09:45:09 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-01-03 09:45:09 +0100 |
commit | fb47fd03100aa36c344457c08410fdc43d7fd20d (patch) | |
tree | 52c9aeac0a14a62cc9e91cb54b0412bf5c2398f3 /tests/unit/datepicker/datepicker_options.js | |
parent | f244108d2876785d3045a4754bed80a9e5692b8f (diff) | |
parent | f667d090a74ce3f9c0bacceab93ec542c6915e44 (diff) | |
download | jquery-ui-fb47fd03100aa36c344457c08410fdc43d7fd20d.tar.gz jquery-ui-fb47fd03100aa36c344457c08410fdc43d7fd20d.zip |
Merge branch 'master' into selectmenu
Diffstat (limited to 'tests/unit/datepicker/datepicker_options.js')
-rw-r--r-- | tests/unit/datepicker/datepicker_options.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/datepicker/datepicker_options.js b/tests/unit/datepicker/datepicker_options.js index 5603dc87b..e47235786 100644 --- a/tests/unit/datepicker/datepicker_options.js +++ b/tests/unit/datepicker/datepicker_options.js @@ -145,13 +145,13 @@ asyncTest("invocation", function() { function step3() { // On image button inp = TestHelpers.datepicker.init("#inp", {showOn: "button", buttonImageOnly: true, - buttonImage: "img/calendar.gif", buttonText: "Cal"}); + buttonImage: "images/calendar.gif", buttonText: "Cal"}); ok(!dp.is(":visible"), "Image button - initially hidden"); button = inp.siblings("button"); ok(button.length === 0, "Image button - button absent"); image = inp.siblings("img"); ok(image.length === 1, "Image button - image present"); - equal(image.attr("src"), "img/calendar.gif", "Image button - image source"); + equal(image.attr("src"), "images/calendar.gif", "Image button - image source"); equal(image.attr("title"), "Cal", "Image button - image text"); inp[0].focus(); setTimeout(function() { @@ -168,7 +168,7 @@ asyncTest("invocation", function() { function step4() { // On both - inp = TestHelpers.datepicker.init("#inp", {showOn: "both", buttonImage: "img/calendar.gif"}); + inp = TestHelpers.datepicker.init("#inp", {showOn: "both", buttonImage: "images/calendar.gif"}); ok(!dp.is(":visible"), "Both - initially hidden"); button = inp.siblings("button"); ok(button.length === 1, "Both - button present"); |