Removed Console Logs.

This commit is contained in:
Daniel Fiuk 2026-04-22 15:42:40 -06:00
parent 7bf89f887c
commit 0ee6b5bd69
2 changed files with 1 additions and 9 deletions

View file

@ -1,7 +1,7 @@
{
"id": "fantasy-map",
"name": "Fantasy Map",
"version": "1.0.1",
"version": "1.0.0",
"minAppVersion": "1.12.0",
"description": "Create and document your fantasy world with a map plugin for Obsidian. Upload your own PNG or SVG maps. Plant pins in important locations and linking them to your notes. A great way to keep track of your world building and storytelling.",
"author": "Daniel Fiuk",

View file

@ -261,12 +261,6 @@ class MapInteractionManager implements MapInteractionController {
}
private reset(): void {
// for debugging
const initOffsets = {
x: this.state.offsetX,
y: this.state.offsetY,
}
// set default zoom level
this.state.zoom = this.parameters.defaultZoomLevel || 1;
@ -297,8 +291,6 @@ class MapInteractionManager implements MapInteractionController {
this.state.offsetX = defaultLeft;
this.state.offsetY = defaulyTop;
console.log(initOffsets, {x: this.state.offsetX, y: this.state.offsetY});
this.clampOffsets();
this.applyTransform();
}