Partially supported multilines.

This commit is contained in:
Paulo Veiga
2011-09-02 02:31:03 -03:00
parent e437e0e329
commit d43eb930d9
32 changed files with 804 additions and 353 deletions

View File

@@ -19,8 +19,8 @@
mindplot.CentralTopic = new Class({
Extends:mindplot.Topic,
initialize: function(model,options) {
this.parent(model,options);
initialize: function(model, options) {
this.parent(model, options);
},
_registerEvents : function() {
@@ -36,6 +36,10 @@ mindplot.CentralTopic = new Class({
return this.getPosition();
},
_getInnerPadding : function() {
return 9;
},
getTopicType : function() {
return mindplot.model.NodeModel.CENTRAL_TOPIC_TYPE;
},