Changeset 13474

Show
Ignore:
Timestamp:
04/30/08 06:06:51 (7 months ago)
Author:
dylan
Message:

refs #6653, fix an accidental global references in dojo.html, and remove duplicate declaration, \!strict

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dojo/trunk/html.js

    r13259 r13474  
    211211   
    212212                                        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); 
    214214                                                if(match){ cont = match[1]; } 
    215215                                        } 
     
    257257                    // so we could do something here to move the original properties aside for later restoration 
    258258                    var empty = {}, key; 
    259                     for(var key in params){ 
     259                    for(key in params){ 
    260260                        if(key in empty){ continue; } 
    261261                        // TODO: here's our opportunity to mask the properties we dont consider configurable/overridable