mirror of
https://github.com/jquery/jquery.git
synced 2026-02-18 17:24:19 -05:00
Fixed missing brackets (d'oh)
This commit is contained in:
@@ -52,9 +52,10 @@ function evaluateTest(files, num, js) {
|
|||||||
try {
|
try {
|
||||||
eval(js);
|
eval(js);
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
if(typeof console != "undefined")
|
if(typeof console != "undefined") {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
console.debug(js);
|
console.debug(js);
|
||||||
|
}
|
||||||
Test.push( [ false, "Died on test #" + (Test.length+1) + ": " + e ] );
|
Test.push( [ false, "Died on test #" + (Test.length+1) + ": " + e ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user