summaryrefslogtreecommitdiff
path: root/lib/dojo/dnd/AutoSource.js.uncompressed.js
blob: 2acf013133763d143bc87c4dc1852dddb5258e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
define("dojo/dnd/AutoSource", ["../_base/declare", "./Source"], function(declare, Source){
	return declare("dojo.dnd.AutoSource", Source, {
		// summary:
		//		a source that syncs its DnD nodes by default

		constructor: function(/*===== node, params =====*/){
			// summary:
			//		constructor of the AutoSource --- see the Source constructor for details
			this.autoSync = true;
		}
	});
});