Fix IE's missing negated attribute operator in the selector class.

This commit is contained in:
Andrew Dupont 2008-05-20 14:48:38 -05:00 committed by Tobie Langel
parent 34798f0d74
commit 637134651a
1 changed files with 1 additions and 0 deletions

View File

@ -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); },