diff --git a/www/common/common-messaging.js b/www/common/common-messaging.js index 0fccf2f17..4fecba707 100644 --- a/www/common/common-messaging.js +++ b/www/common/common-messaging.js @@ -4,7 +4,22 @@ define([ '/common/curve.js', '/bower_components/marked/marked.min.js', ], function ($, Crypto, Curve, Marked) { - var Msg = {}; + var Msg = { + inputs: [], + }; + + var Messages; + var setEditable = Msg.setEditable = function (bool) { + bool = !bool; + Msg.inputs.forEach(function (input) { + input.setAttribute('disabled', bool); + if (Messages) { + // set placeholder + var placeholder = bool? Messages.disconnected: Messages.contacts_typeHere; + input.setAttribute('placeholder', placeholder); + } + }); + }; var Types = { message: 'MSG', @@ -310,10 +325,9 @@ define([ $('