You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
605 B
22 lines
605 B
/** |
|
* Arrangement的drop面板 |
|
* |
|
* Created by GUY on 2016/3/1. |
|
* @class BI.ArrangementDroppable |
|
* @extends BI.Widget |
|
*/ |
|
BI.ArrangementDroppable = BI.inherit(BI.Widget, { |
|
|
|
_defaultConfig: function () { |
|
return BI.extend(BI.ArrangementDroppable.superclass._defaultConfig.apply(this, arguments), { |
|
baseCls: "bi-arrangement-droppable" |
|
}); |
|
}, |
|
|
|
_init: function () { |
|
BI.ArrangementDroppable.superclass._init.apply(this, arguments); |
|
var self = this, o = this.options; |
|
|
|
} |
|
}); |
|
BI.shortcut('bi.arrangement_droppable', BI.ArrangementDroppable); |