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
2bcfd586
Commit
2bcfd586
authored
9 years ago
by
MOZGIII
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed incorrect UI usage and minor updateState params errors in vnc_auto.html
parent
1138bdd4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
vnc_auto.html
vnc_auto.html
+2
-3
No files found.
vnc_auto.html
View file @
2bcfd586
...
...
@@ -211,8 +211,7 @@
path
=
WebUtil
.
getQueryVar
(
'path'
,
'websockify'
);
if
((
!
host
)
||
(
!
port
))
{
updateState
(
'failed'
,
"Must specify host and port in URL"
);
updateState
(
null
,
'fatal'
,
null
,
'Must specify host and port in URL'
);
return
;
}
...
...
@@ -230,7 +229,7 @@
'onPasswordRequired'
:
passwordRequired
,
'onFBUComplete'
:
FBUComplete
});
}
catch
(
exc
)
{
UI
.
updateState
(
null
,
'fatal'
,
null
,
'Unable to create RFB client -- '
+
exc
);
updateState
(
null
,
'fatal'
,
null
,
'Unable to create RFB client -- '
+
exc
);
return
;
// don't continue trying to connect
}
...
...
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