fix reversed color settings

pull/1/head
ansuz 2016-12-16 15:31:22 +01:00
parent af2d9cb5b1
commit a220742f68
1 changed files with 2 additions and 2 deletions

View File

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