From: Dave Methvin Date: Wed, 12 Dec 2012 04:35:51 +0000 (-0500) Subject: Missed a var declaration in aad235b3251494afe71fd5bb6031e11965af9bdb. X-Git-Tag: 1.9.0b1~26 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=40e08f81bd880afc5197ab145bce30d28e88c88f;p=jquery.git Missed a var declaration in aad235b3251494afe71fd5bb6031e11965af9bdb. --- 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 ) {