init repo
This commit is contained in:
34
OfficeWeb/3rdparty/touch/src/layout/Abstract.js
vendored
Normal file
34
OfficeWeb/3rdparty/touch/src/layout/Abstract.js
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Ext.define('Ext.layout.Abstract', {
|
||||
mixins: ['Ext.mixin.Observable'],
|
||||
|
||||
isLayout: true,
|
||||
|
||||
constructor: function(config) {
|
||||
this.initialConfig = config;
|
||||
},
|
||||
|
||||
setContainer: function(container) {
|
||||
this.container = container;
|
||||
|
||||
this.initConfig(this.initialConfig);
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
onItemAdd: function() {},
|
||||
|
||||
onItemRemove: function() {},
|
||||
|
||||
onItemMove: function() {},
|
||||
|
||||
onItemCenteredChange: function() {},
|
||||
|
||||
onItemFloatingChange: function() {},
|
||||
|
||||
onItemDockedChange: function() {},
|
||||
|
||||
onItemInnerStateChange: function() {}
|
||||
});
|
||||
Reference in New Issue
Block a user