File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import BaseComponent from '../../../component/Base.mjs' ;
22import DateUtil from '../../../util/Date.mjs' ;
3+ import EventResizable from './EventResizable.mjs' ;
34import NeoArray from '../../../util/Array.mjs' ;
4- import Resizable from '../../../plugin/Resizable.mjs' ;
55import TimeAxisComponent from './TimeAxisComponent.mjs' ;
66import VDomUtil from '../../../util/VDom.mjs' ;
77import WeekEventDragZone from '../../../draggable/calendar/WeekEventDragZone.mjs' ;
@@ -171,7 +171,7 @@ class Component extends BaseComponent {
171171 me . domListeners = domListeners ;
172172
173173 plugins . push ( {
174- module : Resizable ,
174+ module : EventResizable ,
175175 appName : me . appName ,
176176 delegationCls : 'neo-event' ,
177177 directions : [ 'b' , 't' ] ,
Original file line number Diff line number Diff line change 1+ import Resizable from '../../../plugin/Resizable.mjs' ;
2+
3+ /**
4+ * @class Neo.calendar.view.week.EventResizable
5+ * @extends Neo.container.Base
6+ */
7+ class EventResizable extends Resizable {
8+ static getConfig ( ) { return {
9+ /**
10+ * @member {String} className='Neo.calendar.view.week.EventResizable'
11+ * @protected
12+ */
13+ className : 'Neo.calendar.view.week.EventResizable'
14+ } }
15+ }
16+
17+ Neo . applyClassConfig ( EventResizable ) ;
18+
19+ export { EventResizable as default } ;
You can’t perform that action at this time.
0 commit comments