From bc9ee60385a1b364d5cf6f79aef5c3a2c6babd64 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Thu, 20 Aug 2015 11:32:44 +0200 Subject: [PATCH] Added missing window.todo.get call at startup. --- DVHMA-Featherweight/www/js/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DVHMA-Featherweight/www/js/index.js b/DVHMA-Featherweight/www/js/index.js index b2f57dc..b5cccb7 100644 --- a/DVHMA-Featherweight/www/js/index.js +++ b/DVHMA-Featherweight/www/js/index.js @@ -34,6 +34,8 @@ function checkForExtraText() { param.content = content; window.todo.create([param], reloadItems, logError); }); + }, function(error) { + window.todo.get(reloadItems, logError); }); }