]> git.wh0rd.org Git - tt-rss.git/blob - lib/dojo/dnd/Target.js.uncompressed.js
update dojo to 1.7.3
[tt-rss.git] / lib / dojo / dnd / Target.js.uncompressed.js
1 define("dojo/dnd/Target", [ "./Source" ], function(Source){
2         /*===== Source = dojo.dnd.Source =====*/
3         return dojo.declare("dojo.dnd.Target", Source, {
4                 // summary: a Target object, which can be used as a DnD target
5
6                 constructor: function(node, params){
7                         // summary:
8                         //              a constructor of the Target --- see the `dojo.dnd.Source.constructor` for details
9                         this.isSource = false;
10                         dojo.removeClass(this.node, "dojoDndSource");
11                 }
12         });
13 });