Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
synnefo
Commits
e2d7e003
Commit
e2d7e003
authored
Oct 13, 2011
by
Kostas Papadimitriou
Browse files
Avoid spaces in new window name, fixes IE bug
parent
cd9ad726
Changes
1
Hide whitespace changes
Inline
Side-by-side
ui/static/snf/js/ui/web/ui_vms_base_view.js
View file @
e2d7e003
...
...
@@ -283,7 +283,7 @@
connect_to_console
:
function
(
vm
)
{
vm
.
call
(
"
console
"
,
function
(
console_data
)
{
var
url
=
vm
.
get_console_url
(
console_data
);
snf
.
util
.
open_window
(
url
,
"
Console to '
"
+
vm
.
get
(
"
name
"
)
+
"
'
"
,
{});
snf
.
util
.
open_window
(
url
,
"
VM_
"
+
vm
.
get
(
"
id
"
)
+
"
_CONSOLE
"
,
{});
})
}
...
...
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