fix uncolored /pad/ content in IE

pull/1/head
ansuz 8 years ago
parent 4cd9bd5534
commit 308db7fa79

@ -124,8 +124,7 @@ define([
// hide all content until the realtime doc is ready // hide all content until the realtime doc is ready
$(inner).css({ $(inner).css({
color: 'white', color: '#333',
'background-color': 'white',
}); });
documentBody.innerHTML = Messages.initialState; documentBody.innerHTML = Messages.initialState;
@ -134,8 +133,7 @@ define([
var setEditable = module.setEditable = function (bool) { var setEditable = module.setEditable = function (bool) {
if (bool) { if (bool) {
$(inner).css({ $(inner).css({
color: 'unset', color: '#fff',
'background-color': 'unset',
}); });
$(module.spinner.get().el).fadeOut(750); $(module.spinner.get().el).fadeOut(750);
} else { } else {

Loading…
Cancel
Save