Skip to content
Snippets Groups Projects
Commit 5fae5219 authored by Jeremy White's avatar Jeremy White
Browse files

Merge branch 'fix-ctrl-alt-delete' into 'master'

Add the sc object to sendCtrlAltDel because it is otherwise undefined and issues a JS error

See merge request !2
parents 87b9bee0 1cc79873
No related branches found
No related tags found
1 merge request!2Add the sc object to sendCtrlAltDel because it is otherwise undefined and issues a JS error
......@@ -190,7 +190,7 @@ function handle_keyup(e)
e.preventDefault();
}
function sendCtrlAltDel()
function sendCtrlAltDel(sc)
{
if (sc && sc.inputs && sc.inputs.state === "ready"){
var key = new Messages.SpiceMsgcKeyDown();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment