source:
Dev/trunk/src/client/dojo/dnd/AutoSource.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 371 bytes |
Rev | Line | |
---|---|---|
[483] | 1 | define(["../_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.