source: Dev/trunk/src/client/dojo/dnd/Target.js @ 529

Last change on this file since 529 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 459 bytes
Line 
1define([ "../_base/declare", "../dom-class", "./Source" ], function(declare, domClass, Source){
2        return declare("dojo.dnd.Target", Source, {
3                // summary:
4                //              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                        domClass.remove(this.node, "dojoDndSource");
11                }
12        });
13});
Note: See TracBrowser for help on using the repository browser.