From 0674f36d05495e58e033b87e82ea3349c4399182 Mon Sep 17 00:00:00 2001 From: mossroy Date: Tue, 25 Mar 2014 16:15:16 +0100 Subject: [PATCH] Fix in cleaning the page when switching to another section of the app --- www/js/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/js/app.js b/www/js/app.js index 7c159db9..e8d596ae 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -133,6 +133,7 @@ define(function(require) { $("#readingArticle").hide(); $('#geolocationProgress').hide(); $("#articleContent").empty(); + $('#searchingForTitles').hide(); return false; }); $('#btnConfigure').on('click', function(e) { @@ -153,6 +154,7 @@ define(function(require) { $("#readingArticle").hide(); $('#geolocationProgress').hide(); $('#articleContent').hide(); + $('#searchingForTitles').hide(); return false; }); $('#btnAbout').on('click', function(e) { @@ -173,6 +175,7 @@ define(function(require) { $("#readingArticle").hide(); $('#geolocationProgress').hide(); $('#articleContent').hide(); + $('#searchingForTitles').hide(); return false; });