diff options
author | friendica <info@friendica.com> | 2014-02-01 20:08:36 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-01 20:08:36 -0800 |
commit | 255190205bf35bc1f3f9a90e6e8d5bfa2582b686 (patch) | |
tree | 42a45060be835d2533a669dde66fbb7017915bfb | |
parent | 2c75210fdbb316d13ad27950b14302266fff9a8e (diff) | |
parent | 3b1346c143fef300cbf0bec38333b0b772a01ceb (diff) | |
download | volse-hubzilla-255190205bf35bc1f3f9a90e6e8d5bfa2582b686.tar.gz volse-hubzilla-255190205bf35bc1f3f9a90e6e8d5bfa2582b686.tar.bz2 volse-hubzilla-255190205bf35bc1f3f9a90e6e8d5bfa2582b686.zip |
Merge https://github.com/friendica/red into zpull
-rw-r--r-- | doc/TermsOfService.md | 2 | ||||
-rw-r--r-- | view/tpl/chat.tpl | 17 |
2 files changed, 18 insertions, 1 deletions
diff --git a/doc/TermsOfService.md b/doc/TermsOfService.md index 3586b5d82..41e9c0de7 100644 --- a/doc/TermsOfService.md +++ b/doc/TermsOfService.md @@ -1,4 +1,4 @@ Terms of Service ================ -#include SiteTOS; +#include doc/SiteTOS.md; diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl index 0ebe879a1..a0c18f8d6 100644 --- a/view/tpl/chat.tpl +++ b/view/tpl/chat.tpl @@ -89,3 +89,20 @@ function update_chats(chats) { } </script> +<script> +function isMobile() { + try{ document.createEvent("TouchEvent"); return true; } + catch(e){ return false; } +} +$(function(){ + + $('#chatText').keypress(function(e){ + if (e.keyCode == 13 && e.shiftKey||isMobile()) { + } + else if (e.keyCode == 13) { + e.preventDefault(); + $(this).parent('form').trigger('submit'); + } + }); +}); +</script> |