From 308db7fa79beb59360e696f2a2d5fc86ea3d4539 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 16 Dec 2016 15:25:06 +0100 Subject: [PATCH] fix uncolored /pad/ content in IE --- www/pad/main.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/www/pad/main.js b/www/pad/main.js index 457913cb5..74130b860 100644 --- a/www/pad/main.js +++ b/www/pad/main.js @@ -124,8 +124,7 @@ define([ // hide all content until the realtime doc is ready $(inner).css({ - color: 'white', - 'background-color': 'white', + color: '#333', }); documentBody.innerHTML = Messages.initialState; @@ -134,8 +133,7 @@ define([ var setEditable = module.setEditable = function (bool) { if (bool) { $(inner).css({ - color: 'unset', - 'background-color': 'unset', + color: '#fff', }); $(module.spinner.get().el).fadeOut(750); } else {