aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/cobrands/fixmystreet/offline.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/cobrands/fixmystreet/offline.js b/web/cobrands/fixmystreet/offline.js
index c1a93f738..54ab12061 100644
--- a/web/cobrands/fixmystreet/offline.js
+++ b/web/cobrands/fixmystreet/offline.js
@@ -25,12 +25,11 @@ fixmystreet.offlineBanner = (function() {
banner.push('</span></p></div>');
banner = $(banner.join(''));
banner.prependTo('.content');
- if (!offline && num === 0) {
+ if (num === 0) {
banner.hide();
}
window.addEventListener("offline", function(e) {
- $('.top_banner--offline').slideDown();
$('#offline_forms').html(offlineText());
});