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
8ce27ddb
Commit
8ce27ddb
authored
9 years ago
by
samhed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-fixes #428 which was broken by commit
58ded70d
* Disable local cursor when the browser doesn't support data uri
parent
f9ffb21b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
display.js
include/display.js
+1
-1
rfb.js
include/rfb.js
+1
-0
No files found.
include/display.js
View file @
8ce27ddb
...
...
@@ -88,7 +88,7 @@ var Display;
// Determine browser support for setting the cursor via data URI scheme
if
(
this
.
_cursor_uri
||
this
.
_cursor_uri
===
null
||
this
.
_cursor_uri
===
undefined
)
{
this
.
_cursor_uri
=
Util
.
browserSupportsCursorURIs
(
this
.
_target
);
this
.
_cursor_uri
=
Util
.
browserSupportsCursorURIs
();
}
Util
.
Debug
(
"<< Display.constructor"
);
...
...
This diff is collapsed.
Click to expand it.
include/rfb.js
View file @
8ce27ddb
...
...
@@ -1265,6 +1265,7 @@ var RFB;
this
.
_local_cursor
=
true
;
}
else
{
Util
.
Warn
(
"Browser does not support local cursor"
);
this
.
_display
.
disableLocalCursor
();
}
}
};
...
...
This diff is collapsed.
Click to expand it.
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