From 05f67e2052a7dbfa9d369bb96ee73cd2caa0ea94 Mon Sep 17 00:00:00 2001
From: Fabian Homborg <FHomborg@gmail.com>
Date: Fri, 16 Aug 2013 11:52:18 +0200
Subject: [PATCH] Bugfix spirallayout - resetTileSizes called a non-existent
 function

---
 contents/code/spirallayout.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contents/code/spirallayout.js b/contents/code/spirallayout.js
index ea56ef1..57d50a3 100644
--- a/contents/code/spirallayout.js
+++ b/contents/code/spirallayout.js
@@ -43,7 +43,7 @@ SpiralLayout.prototype.resetTileSizes = function() {
     var tileCount = this.tiles.length;
     this.tiles.length = 0;
     for (var i = 0; i < tileCount; i++) {
-        addTile();
+        this.addTile();
     }
 }
 
-- 
GitLab