Prechádzať zdrojové kódy

Fixes #1190 by explicitly setting the column width

JC Brand 6 rokov pred
rodič
commit
11bd3db86b
3 zmenil súbory, kde vykonal 4 pridanie a 3 odobranie
  1. 1 1
      dist/converse.js
  2. 2 1
      index.html
  3. 1 1
      src/templates/chatarea.html

+ 1 - 1
dist/converse.js

@@ -78398,7 +78398,7 @@ var _ = {escape:__webpack_require__(/*! ./node_modules/lodash/escape.js */ "./no
 module.exports = function(o) {
 var __t, __p = '', __j = Array.prototype.join;
 function print() { __p += __j.call(arguments, '') }
-__p += '<!-- src/templates/chatarea.html -->\n<div class="chat-area col">\n    <div class="chat-content ';
+__p += '<!-- src/templates/chatarea.html -->\n<div class="chat-area col-md-9 col-8">\n    <div class="chat-content ';
  if (o.show_send_button) { ;
 __p += 'chat-content-sendbutton';
  } ;

+ 2 - 1
index.html

@@ -19,6 +19,7 @@
     <!-- *********************************************************************** -->
 
     <![if gte IE 11]>
+        <script src="3rdparty/libsignal-protocol.js"></script>
         <link type="text/css" rel="stylesheet" media="screen" href="css/converse.css" />
         <script src="dist/converse.js"></script>
     <![endif]>
@@ -356,7 +357,7 @@
     converse.initialize({
         // Please use this connection manager only for testing purposes
         bosh_service_url: 'https://conversejs.org/http-bind/',
-        show_controlbox_by_default: true,
+        show_controlbox_by_default: true
     });
 </script>
 </html>

+ 1 - 1
src/templates/chatarea.html

@@ -1,4 +1,4 @@
-<div class="chat-area col">
+<div class="chat-area col-md-9 col-8">
     <div class="chat-content {[ if (o.show_send_button) { ]}chat-content-sendbutton{[ } ]}"></div>
     <div class="message-form-container"/>
 </div>