mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-19 02:05:32 +08:00
14 lines
411 B
JavaScript
14 lines
411 B
JavaScript
mindplot.layoutManagers.boards.freeMindBoards.MainTopicBoard = mindplot.layoutManagers.boards.freeMindBoards.Board.extend({
|
|
options:{
|
|
|
|
},
|
|
initialize:function(node, layoutManager, options){
|
|
this.parent(node, layoutManager, options);
|
|
},
|
|
_createTables:function(){
|
|
return [[]];
|
|
},
|
|
_getTableForNode:function(node){
|
|
return this._positionTables[0];
|
|
}
|
|
}); |