Commands fixed.
This commit is contained in:
@@ -20,31 +20,52 @@ mindplot.BaseCommandDispatcher = new Class({
|
||||
|
||||
initialize: function() {
|
||||
},
|
||||
addIconToTopic: function() {
|
||||
|
||||
addIconToTopic: function(topicId, iconType) {
|
||||
throw "method must be implemented.";
|
||||
},
|
||||
addLinkToTopic: function() {
|
||||
|
||||
addLinkToTopic: function(topicId, url) {
|
||||
throw "method must be implemented.";
|
||||
},
|
||||
addNoteToTopic: function() {
|
||||
|
||||
addNoteToTopic: function(topicId, text) {
|
||||
throw "method must be implemented.";
|
||||
},addRelationship: function() {
|
||||
},
|
||||
|
||||
addRelationship: function(model, mindmap) {
|
||||
throw "method must be implemented.";
|
||||
},addTopic: function() {
|
||||
},
|
||||
|
||||
addTopic: function(model, parentTopicId, animated) {
|
||||
throw "method must be implemented.";
|
||||
},changeIcon: function() {
|
||||
},
|
||||
|
||||
changeIcon: function(topicId, iconId, iconType) {
|
||||
throw "method must be implemented.";
|
||||
},deleteTopic: function() {
|
||||
},
|
||||
|
||||
deleteTopic: function(topicsIds) {
|
||||
throw "method must be implemented.";
|
||||
},dragTopic: function() {
|
||||
},
|
||||
|
||||
dragTopic: function(topicId) {
|
||||
throw "method must be implemented.";
|
||||
},moveControllPoint: function() {
|
||||
},
|
||||
|
||||
moveControlPoint: function(trlPointController, point) {
|
||||
throw "method must be implemented.";
|
||||
} ,removeIconFromTopic: function() {
|
||||
},
|
||||
|
||||
removeIconFromTopic: function(topicId, iconModel) {
|
||||
throw "method must be implemented.";
|
||||
},removeLinkFromTopic: function() {
|
||||
},
|
||||
|
||||
removeLinkFromTopic: function(topicId) {
|
||||
throw "method must be implemented.";
|
||||
},removeNodeFromTopic: function() {
|
||||
},
|
||||
|
||||
removeNodeFromTopic: function(topicId) {
|
||||
throw "method must be implemented.";
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user