control-freak-ide/server/nodejs/dist/web/dojo/dnd/AutoSource.js
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

13 lines
371 B
JavaScript

define(["../_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;
}
});
});