Fossil

Check-in [16ba05da98]
Login

Check-in [16ba05da98]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:In chat multi-line mode, the 'placeholder' text now mentions that Ctrl-Enter sends the message.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 16ba05da98fc290b7fcfb802000828508c33ecdf63d9284a153005c0bca2c06a
User & Date: stephan 2021-01-02 06:05:05.555
Context
2021-01-02
12:58
Improvements to the test-random-password command. ... (check-in: 931b97e8ae user: drh tags: trunk)
06:05
In chat multi-line mode, the 'placeholder' text now mentions that Ctrl-Enter sends the message. ... (check-in: 16ba05da98 user: stephan tags: trunk)
05:26
Extended the is-json-mode check in [e0b51eb2e7] to include the 'http' command when looking for repolist-style paths. ... (check-in: bc593ea042 user: stephan tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/chat.c.
116
117
118
119
120
121
122
123

124
125
126
127
128
129
130
  style_header("Chat");
  @ <form accept-encoding="utf-8" id="chat-form" autocomplete="off">
  @ <div id='chat-input-area'>
  @   <div id='chat-input-line'>
  @     <input type="text" name="msg" id="chat-input-single" \
  @      placeholder="Type message here." autocomplete="off">
  @     <textarea rows="8" id="chat-input-multi" \
  @      placeholder="Type message here" class="hidden"></textarea>

  @     <input type="submit" value="Send" id="chat-message-submit">
  @     <button id="chat-scroll-top">&uarr;</button>
  @     <button id="chat-scroll-bottom">&darr;</button>
  @     <span id="chat-settings-button" class="settings-icon" \
  @       aria-label="Settings..." aria-haspopup="true" ></span>
  @   </div>
  @   <div id='chat-input-file-area'>







|
>







116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
  style_header("Chat");
  @ <form accept-encoding="utf-8" id="chat-form" autocomplete="off">
  @ <div id='chat-input-area'>
  @   <div id='chat-input-line'>
  @     <input type="text" name="msg" id="chat-input-single" \
  @      placeholder="Type message here." autocomplete="off">
  @     <textarea rows="8" id="chat-input-multi" \
  @      placeholder="Type message here. Ctrl-Enter sends it." \
  @      class="hidden"></textarea>
  @     <input type="submit" value="Send" id="chat-message-submit">
  @     <button id="chat-scroll-top">&uarr;</button>
  @     <button id="chat-scroll-bottom">&darr;</button>
  @     <span id="chat-settings-button" class="settings-icon" \
  @       aria-label="Settings..." aria-haspopup="true" ></span>
  @   </div>
  @   <div id='chat-input-file-area'>