[ARVADOS] updated: 1d73050943da34f9983c7b71eb9cd76a1f0aed5e
git at public.curoverse.com
git at public.curoverse.com
Wed Jul 8 21:07:49 EDT 2015
Summary of changes:
apps/workbench/public/shell_in_a_box.js | 2 ++
1 file changed, 2 insertions(+)
via 1d73050943da34f9983c7b71eb9cd76a1f0aed5e (commit)
from 8d0355a42caf66f40fe3007a43dc2c8b88712083 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 1d73050943da34f9983c7b71eb9cd76a1f0aed5e
Author: radhika <radhika at curoverse.com>
Date: Wed Jul 8 21:07:22 2015 -0400
i6279: The '-' and '_' are not working in Firefox. Upon googling, found this URL that suggested a workaround:
https://code.google.com/p/shellinabox/issues/detail?id=202
diff --git a/apps/workbench/public/shell_in_a_box.js b/apps/workbench/public/shell_in_a_box.js
index 8a3e356..111126c 100644
--- a/apps/workbench/public/shell_in_a_box.js
+++ b/apps/workbench/public/shell_in_a_box.js
@@ -3116,6 +3116,7 @@ VT100.prototype.handleKey = function(event) {
case 187: /* = */ ch = this.applyModifiers(61, event); break;
case 188: /* , */ ch = this.applyModifiers(44, event); break;
case 189: /* - */ ch = this.applyModifiers(45, event); break;
+ case 173: /* - */ ch = this.applyModifiers(45, event); break; // FF15 Patch
case 190: /* . */ ch = this.applyModifiers(46, event); break;
case 191: /* / */ ch = this.applyModifiers(47, event); break;
// Conflicts with dead key " on Swiss keyboards
@@ -3260,6 +3261,7 @@ VT100.prototype.fixEvent = function(event) {
case 187: /* = -> + */ u = 61; s = 43; break;
case 188: /* , -> < */ u = 44; s = 60; break;
case 189: /* - -> _ */ u = 45; s = 95; break;
+ case 173: /* - -> _ */ u = 45; s = 95; break; // FF15 Patch
case 190: /* . -> > */ u = 46; s = 62; break;
case 191: /* / -> ? */ u = 47; s = 63; break;
case 192: /* ` -> ~ */ u = 96; s = 126; break;
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list