Fixed the q() method to use same instead of isSet.
This commit is contained in:
parent
4bda398e6a
commit
dfeb8140fa
|
@ -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 + ")");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue