aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-01-18 01:58:15 +0000
committerScott González <scott.gonzalez@gmail.com>2010-01-18 01:58:15 +0000
commit0ec857a5bd1df6cf210dbaa75e5085caa0d0aff0 (patch)
treeacf7934ab993d2a511dfa8cc5f261903f579c855 /tests
parentb3e5f8453cac2387acfd25964af61ebc494c5903 (diff)
downloadjquery-ui-0ec857a5bd1df6cf210dbaa75e5085caa0d0aff0.tar.gz
jquery-ui-0ec857a5bd1df6cf210dbaa75e5085caa0d0aff0.zip
Button: conform to coding standards.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/button/button_core.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/button/button_core.js b/tests/unit/button/button_core.js
index 12016627f..1a40d5ee0 100644
--- a/tests/unit/button/button_core.js
+++ b/tests/unit/button/button_core.js
@@ -10,7 +10,7 @@ module("button: core");
test("checkbox", function() {
var input = $("#check");
label = $("label[for=check]");
- ok( input.is(":visble") );
+ ok( input.is(":visible") );
ok( label.is(":not(.ui-button)") );
input.button();
ok( input.is(":hidden") );
@@ -20,7 +20,7 @@ test("checkbox", function() {
test("radios", function() {
var inputs = $("#radio0 input");
labels = $("#radio0 label");
- ok( inputs.is(":visble") );
+ ok( inputs.is(":visible") );
ok( labels.is(":not(.ui-button)") );
inputs.button();
ok( inputs.is(":hidden") );