Changeset 13474
- Timestamp:
- 04/30/08 06:06:51 (7 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/html.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/html.js
r13259 r13474 211 211 212 212 if(this.extractContent){ 213 match = cont.match(/<body[^>]*>\s*([\s\S]+)\s*<\/body>/im);213 var match = cont.match(/<body[^>]*>\s*([\s\S]+)\s*<\/body>/im); 214 214 if(match){ cont = match[1]; } 215 215 } … … 257 257 // so we could do something here to move the original properties aside for later restoration 258 258 var empty = {}, key; 259 for( varkey in params){259 for(key in params){ 260 260 if(key in empty){ continue; } 261 261 // TODO: here's our opportunity to mask the properties we dont consider configurable/overridable