aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/attributes.js
diff options
context:
space:
mode:
authorDave Methvin <dave.methvin@gmail.com>2012-12-11 23:35:51 -0500
committerDave Methvin <dave.methvin@gmail.com>2012-12-11 23:35:51 -0500
commit40e08f81bd880afc5197ab145bce30d28e88c88f (patch)
tree10bdf387a7dc8ac4c5bfef5a84d7286bdc06eb54 /test/unit/attributes.js
parentf12611feb43adb2b014eb2183db0713451746aff (diff)
downloadjquery-40e08f81bd880afc5197ab145bce30d28e88c88f.tar.gz
jquery-40e08f81bd880afc5197ab145bce30d28e88c88f.zip
Missed a var declaration in aad235b3251494afe71fd5bb6031e11965af9bdb.
Diffstat (limited to 'test/unit/attributes.js')
-rw-r--r--test/unit/attributes.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/attributes.js b/test/unit/attributes.js
index 3144dc626..4d1a72b4f 100644
--- a/test/unit/attributes.js
+++ b/test/unit/attributes.js
@@ -387,7 +387,7 @@ test( "attr(String, Object)", function() {
}
var check = document.createElement("input");
- thrown = true;
+ var thrown = true;
try {
jQuery( check ).attr( "type", "checkbox" );
} catch( e ) {