Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
[refactor] update console log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
cedoor committed Mar 16, 2018
1 parent c41b3e2 commit d9e7389
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions example/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,35 +128,35 @@ dom.imageSrc[1].onclick = function () {
};

map.on("create", function () {
message("§ map.new()");
message("§ map.new");
});

map.on("center", function () {
message("§ map.center()");
message("§ map.center");
});

map.on("undo", function () {
message("§ map.undo()");
message("§ map.undo");
});

map.on("redo", function () {
message("§ map.redo()");
message("§ map.redo");
});

map.on("zoomIn", function () {
message("§ map.zoomIn()");
message("§ map.zoomIn");
});

map.on("zoomOut", function () {
message("§ map.zoomOut()");
message("§ map.zoomOut");
});

map.on("exportJSON", function () {
message("§ map.exportAsJSON()");
message("§ map.exportAsJSON");
});

map.on("exportImage", function () {
message("§ map.exportAsImage()");
message("§ map.exportAsImage");
});

map.on("nodeSelect", function (node) {
Expand Down

0 comments on commit d9e7389

Please sign in to comment.