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