fix uncolored /pad/ content in IE

pull/1/head
ansuz 2016-12-16 15:25:06 +01:00
parent 4cd9bd5534
commit 308db7fa79
1 changed files with 2 additions and 4 deletions

View File

@ -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 {