Flatlogic Bot 055d24df95 WORKING
2025-10-14 02:37:44 +00: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;
}
});
});