Removed redundant lines in selector.js. [#138 state:resolved] (Richard Quadling)

This commit is contained in:
Andrew Dupont 2009-02-21 23:32:00 -06:00
parent 91b787ae17
commit 9da5045df2
1 changed files with 0 additions and 2 deletions

View File

@ -682,8 +682,6 @@ Object.extend(Selector, {
'^=': 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); },
'$=': function(nv, v) { return nv.endsWith(v); },
'*=': function(nv, v) { return nv.include(v); },
'~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); },
'|=': function(nv, v) { return ('-' + (nv || "").toUpperCase() +
'-').include('-' + (v || "").toUpperCase() + '-'); }