dijit
Version:
Dijit provides a complete collection of user interface controls based on Dojo, giving you the power to create web applications that are highly optimized for usability, performance, internationalization, accessibility, but above all deliver an incredible u
21 lines (17 loc) • 500 B
JavaScript
define([
"dojo/_base/kernel", // kernel.deprecated
"dojo/_base/lang", // lang.setObject
"../tree/dndSource"
], function(kernel, lang, dndSource){
// module:
// dijit/_tree/dndSource
/*=====
return {
// summary:
// Deprecated module, use dijit/tree/dndSource instead.
};
=====*/
// TODO: remove this file in 2.0
kernel.deprecated("dijit._tree.dndSource has been moved to dijit.tree.dndSource, use that instead", "", "2.0");
lang.setObject("dijit._tree.dndSource", dndSource);
});