Changeset 7684

Show
Ignore:
Timestamp:
03/19/07 20:56:07 (22 months ago)
Author:
alex
Message:

note to self. Refs #2500

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dojo/trunk/_base/_loader/bootstrap.js

    r7658 r7684  
    160160        //       - Mozilla/SpiderMonkey eval() takes an optional second argument which is the 
    161161        //       scope object for new symbols. 
     162 
     163        // FIXME: investigate Joseph Smarr's technique for IE: 
     164        //              http://josephsmarr.com/2007/01/31/fixing-eval-to-use-global-scope-in-ie/ 
    162165        return dojo.global().eval ? dojo.global().eval(scriptFragment) : eval(scriptFragment);  // mixed 
    163166}