Ticket #5243: dijit.Declaration_20071128.patch
| File dijit.Declaration_20071128.patch, 0.5 kB (added by jaredj, 7 months ago) |
|---|
-
Declaration.js
46 46 // do the connects for each <script type="dojo/connect" event="foo"> block and make 47 47 // all <script type="dojo/method"> tags execute right after construction 48 48 this.mixins.push(function(){ 49 parsedScripts.forEach(function(s){49 dojo.forEach(parsedScripts, function(s){ 50 50 dojo.connect(this, s.event, this, s.func); 51 51 }, this); 52 52 });