Merge pull request #71 from beatriceo/send-enter

added an event listener on enter key to have it as send
This commit is contained in:
Beatrice Olivera 2018-09-06 12:47:07 +01:00 committed by GitHub
commit ab42239aad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 8 deletions

View File

@ -100,3 +100,4 @@ if (acceptButton) {
document.getElementById('chat-room-id').value = chatRoomId
})
}

View File

@ -220,3 +220,18 @@ setTimeout(function() {
window.__proto__.reload = () => { window.location = window.location }
})();
// // have enter with JS
// const form = document.getElementById("chat-form")
// document.getElementById("chat-input").addEventListener("keyup", event => {
// if(event == "Enter"){
// form.submit();
// }
// });
document.getElementById("chat-form").addEventListener("click", function(event){
event.preventDefault()
});

View File

@ -28,6 +28,7 @@
<option value="<%= language.code %>"><%= language.name %></option>
<% end %>
</select>
<form class="form-inline" id="chat-form">
<span class="input-group-addon" style="width:0px; padding-left:0px; padding-right:0px; border:none;"></span>
<input type="text" class="form-control" name="chat-input" id="chat-input" value="">
<span class="input-group-btn">
@ -36,6 +37,7 @@
<span class="input-group-btn">
<button class="btn btn-danger form-control" id="original-btn" type="submit" remote: true>Show Original</button>
</span>
</form>
</div>
</div>
</div>