Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed the q() method to use same instead of isSet.
  • Loading branch information
jeresig committed Sep 29, 2009
1 parent 4bda398 commit dfeb814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/data/testinit.js
Expand Up @@ -24,13 +24,13 @@ function q() {
r'
*/
function t(a,b,c) {
var f = jQuery(b), s = "";
var f = jQuery(b).get(), s = "";

for ( var i = 0; i < f.length; i++ ) {
s += (s && ",") + '"' + f[i].id + '"';
}

isSet(f, q.apply(q,c), a + " (" + b + ")");
same(f, q.apply(q,c), a + " (" + b + ")");
}

/**
Expand Down

0 comments on commit dfeb814

Please sign in to comment.