diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-18 01:58:15 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-18 01:58:15 +0000 |
commit | 0ec857a5bd1df6cf210dbaa75e5085caa0d0aff0 (patch) | |
tree | acf7934ab993d2a511dfa8cc5f261903f579c855 /tests | |
parent | b3e5f8453cac2387acfd25964af61ebc494c5903 (diff) | |
download | jquery-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.js | 4 |
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") );
|