Baris Soner Usakli 12 years ago
commit 34777fa844

@ -320,6 +320,7 @@ footer.footer {
background: #56BCDA; background: #56BCDA;
color: white; color: white;
padding: 30px; padding: 30px;
word-wrap: break-word;
} }
.users-box{ .users-box{

@ -10,7 +10,7 @@ define(['taskbar'], function(taskbar) {
composer.init = function() { composer.init = function() {
// Create the fixed bottom bar // Create the fixed bottom bar
var taskbar = document.getElementById('taskbar'); var taskbar = document.getElementById('taskbar');
composer.postContainer = document.createElement('div'); composer.postContainer = document.createElement('div');
composer.postContainer.className = 'post-window row-fluid'; composer.postContainer.className = 'post-window row-fluid';
composer.postContainer.innerHTML = '<div class="span10 offset1">' + composer.postContainer.innerHTML = '<div class="span10 offset1">' +
@ -170,6 +170,7 @@ define(['taskbar'], function(taskbar) {
socket.emit('api:composer.editCheck', post_data.pid); socket.emit('api:composer.editCheck', post_data.pid);
} else { } else {
titleEl.value = post_data.title; titleEl.value = post_data.title;
titleEl.readOnly = false;
} }
bodyEl.value = post_data.body bodyEl.value = post_data.body

Loading…
Cancel
Save