Skip to content
Snippets Groups Projects
Commit 05f67e20 authored by Fabian Homborg's avatar Fabian Homborg
Browse files

Bugfix spirallayout - resetTileSizes called a non-existent function

parent 68781795
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ SpiralLayout.prototype.resetTileSizes = function() { ...@@ -43,7 +43,7 @@ SpiralLayout.prototype.resetTileSizes = function() {
var tileCount = this.tiles.length; var tileCount = this.tiles.length;
this.tiles.length = 0; this.tiles.length = 0;
for (var i = 0; i < tileCount; i++) { for (var i = 0; i < tileCount; i++) {
addTile(); this.addTile();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment