Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
noVNC
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
noVNC
Commits
49d5cee9
Commit
49d5cee9
authored
Dec 24, 2012
by
Joel Martin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #220 from vaj/keyinput
Ctrl+'-' won't work on a US keyboad with the latest Firefox.
parents
d55f5377
37a3081f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
input.js
include/input.js
+4
-0
No files found.
include/input.js
View file @
49d5cee9
...
@@ -110,6 +110,10 @@ function getKeysymSpecial(evt) {
...
@@ -110,6 +110,10 @@ function getKeysymSpecial(evt) {
if
(
Util
.
Engine
.
gecko
||
Util
.
Engine
.
presto
)
{
if
(
Util
.
Engine
.
gecko
||
Util
.
Engine
.
presto
)
{
keysym
=
45
;
}
keysym
=
45
;
}
break
;
break
;
case
173
:
// - (Mozilla)
if
(
Util
.
Engine
.
gecko
)
{
keysym
=
45
;
}
break
;
case
189
:
keysym
=
45
;
break
;
// - (IE)
case
189
:
keysym
=
45
;
break
;
// - (IE)
case
190
:
keysym
=
46
;
break
;
// . (Mozilla, IE)
case
190
:
keysym
=
46
;
break
;
// . (Mozilla, IE)
case
191
:
keysym
=
47
;
break
;
// / (Mozilla, IE)
case
191
:
keysym
=
47
;
break
;
// / (Mozilla, IE)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment