From 1354d17270961fff662d40f90521223f8fd0d73b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 14 Aug 2012 18:59:10 +0400 Subject: update dojo to 1.7.3 --- lib/dojo/dnd/Target.js.uncompressed.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/dojo/dnd/Target.js.uncompressed.js (limited to 'lib/dojo/dnd/Target.js.uncompressed.js') diff --git a/lib/dojo/dnd/Target.js.uncompressed.js b/lib/dojo/dnd/Target.js.uncompressed.js new file mode 100644 index 000000000..bed2dcc09 --- /dev/null +++ b/lib/dojo/dnd/Target.js.uncompressed.js @@ -0,0 +1,13 @@ +define("dojo/dnd/Target", [ "./Source" ], function(Source){ + /*===== Source = dojo.dnd.Source =====*/ + return dojo.declare("dojo.dnd.Target", Source, { + // summary: a Target object, which can be used as a DnD target + + constructor: function(node, params){ + // summary: + // a constructor of the Target --- see the `dojo.dnd.Source.constructor` for details + this.isSource = false; + dojo.removeClass(this.node, "dojoDndSource"); + } + }); +}); -- cgit v1.2.3-54-g00ecf