Changeset 8432
- Timestamp:
- 05/07/07 03:15:10 (20 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/_base/html.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_base/html.js
r8431 r8432 300 300 } 301 301 302 var_docScroll = function(){302 dojo._docScroll = function(){ 303 303 var _b = dojo.body(); 304 304 var _w = dojo.global; … … 515 515 // Returns whether or not the specified classes are a portion of the 516 516 // class list currently applied to the node. 517 return (new RegExp('(^|\\s+)'+classStr+'(\\s+|$)')).test(node.className) // Boolean 517 // return (new RegExp('(^|\\s+)'+classStr+'(\\s+|$)')).test(node.className) // Boolean 518 return ((" "+node.className+" ").indexOf(" "+classStr+" ") > 0); // Boolean 518 519 } 519 520