Fix package names ...

This commit is contained in:
Paulo Veiga
2011-07-27 21:01:54 -03:00
parent 665c070359
commit d4fefed545
15 changed files with 151 additions and 146 deletions

View File

@@ -0,0 +1,14 @@
mindplot.layout.boards.freemind.MainTopicBoard = mindplot.layout.boards.freemind.Board.extend({
options:{
},
initialize:function(node, layoutManager, options){
this.parent(node, layoutManager, options);
},
_createTables:function(){
return [[]];
},
_getTableForNode:function(node){
return this._positionTables[0];
}
});