From dc991ddffc287263c2b4fd218d43e2f501b181dc Mon Sep 17 00:00:00 2001 From: Duda Dornelles Date: Tue, 14 Oct 2014 18:34:09 +0200 Subject: Adding feature toggle for auto reload so we can disable it in the functional tests --- web-ui/app/js/mail_list/domain/refresher.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'web-ui/app/js/mail_list/domain') diff --git a/web-ui/app/js/mail_list/domain/refresher.js b/web-ui/app/js/mail_list/domain/refresher.js index 6f3b1c04..38c9cde5 100644 --- a/web-ui/app/js/mail_list/domain/refresher.js +++ b/web-ui/app/js/mail_list/domain/refresher.js @@ -14,7 +14,7 @@ * You should have received a copy of the GNU Affero General Public License * along with Pixelated. If not, see . */ -define(['flight/lib/component', 'page/events'], function(defineComponent, events) { +define(['flight/lib/component', 'page/events', 'features'], function(defineComponent, events, features) { 'use strict'; return defineComponent(refresher); @@ -34,7 +34,9 @@ define(['flight/lib/component', 'page/events'], function(defineComponent, events }; this.after('initialize', function () { - this.setupRefresher(); + if (features.isAutoRefreshEnabled()) { + this.setupRefresher(); + } }); } } -- cgit v1.2.3