diff --git a/public/css/style.less b/public/css/style.less index 71e05e21f7..751e1dfe38 100644 --- a/public/css/style.less +++ b/public/css/style.less @@ -320,6 +320,7 @@ footer.footer { background: #56BCDA; color: white; padding: 30px; + word-wrap: break-word; } .users-box{ diff --git a/public/src/modules/composer.js b/public/src/modules/composer.js index ff8bb675ab..52e192a843 100644 --- a/public/src/modules/composer.js +++ b/public/src/modules/composer.js @@ -10,7 +10,7 @@ define(['taskbar'], function(taskbar) { composer.init = function() { // Create the fixed bottom bar var taskbar = document.getElementById('taskbar'); - + composer.postContainer = document.createElement('div'); composer.postContainer.className = 'post-window row-fluid'; composer.postContainer.innerHTML = '
' + @@ -170,6 +170,7 @@ define(['taskbar'], function(taskbar) { socket.emit('api:composer.editCheck', post_data.pid); } else { titleEl.value = post_data.title; + titleEl.readOnly = false; } bodyEl.value = post_data.body