source: Dev/trunk/src/client/dojo/dnd/AutoSource.js @ 532

Last change on this file since 532 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 371 bytes
Line 
1define(["../_base/declare", "./Source"], function(declare, Source){
2        return declare("dojo.dnd.AutoSource", Source, {
3                // summary:
4                //              a source that syncs its DnD nodes by default
5
6                constructor: function(/*===== node, params =====*/){
7                        // summary:
8                        //              constructor of the AutoSource --- see the Source constructor for details
9                        this.autoSync = true;
10                }
11        });
12});
Note: See TracBrowser for help on using the repository browser.