123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- goog.provide('goog.fx.DragDrop');
- goog.require('goog.fx.AbstractDragDrop');
- goog.require('goog.fx.DragDropItem');
- goog.fx.DragDrop = function(element, opt_data) {
- goog.fx.AbstractDragDrop.call(this);
- var item = new goog.fx.DragDropItem(element, opt_data);
- item.setParent(this);
- this.items_.push(item);
- };
- goog.inherits(goog.fx.DragDrop, goog.fx.AbstractDragDrop);
|