Changeset 11648

Show
Ignore:
Timestamp:
11/28/07 08:22:20 (8 months ago)
Author:
jaredj
Message:

Fixing a FF-ism in the code. Should have been dojo.forEach. fixes #5243

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/dijit/trunk/Declaration.js

    r11542 r11648  
    4747                        // all <script type="dojo/method"> tags execute right after construction 
    4848                        this.mixins.push(function(){ 
    49                                 parsedScripts.forEach(function(s){ 
     49                                dojo.forEach(parsedScripts, function(s){ 
    5050                                        dojo.connect(this, s.event, this, s.func); 
    5151                                }, this);