Fix IE's missing negated attribute operator in the selector class.
This commit is contained in:
parent
34798f0d74
commit
637134651a
|
@ -655,6 +655,7 @@ Object.extend(Selector, {
|
|||
|
||||
operators: {
|
||||
'=': function(nv, v) { return nv == v; },
|
||||
'!=': function(nv, v) { return nv != v; },
|
||||
'^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); },
|
||||
'$=': function(nv, v) { return nv == v || nv && nv.endsWith(v); },
|
||||
'*=': function(nv, v) { return nv == v || nv && nv.include(v); },
|
||||
|
|
Loading…
Reference in New Issue