mirror of https://github.com/huashengdun/webssh
Moved command execution code
parent
caee6a67fb
commit
8577c1c845
|
@ -341,12 +341,6 @@ jQuery(function($){
|
||||||
if (!term.resized) {
|
if (!term.resized) {
|
||||||
resize_terminal(term);
|
resize_terminal(term);
|
||||||
term.resized = true;
|
term.resized = true;
|
||||||
|
|
||||||
if (url_opts_data.command) {
|
|
||||||
setTimeout(function () {
|
|
||||||
sock.send(JSON.stringify({'data': url_opts_data.command+'\r'}));
|
|
||||||
}, 500);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -476,6 +470,11 @@ jQuery(function($){
|
||||||
term.focus();
|
term.focus();
|
||||||
state = CONNECTED;
|
state = CONNECTED;
|
||||||
title_element.text = url_opts_data.title || default_title;
|
title_element.text = url_opts_data.title || default_title;
|
||||||
|
if (url_opts_data.command) {
|
||||||
|
setTimeout(function () {
|
||||||
|
sock.send(JSON.stringify({'data': url_opts_data.command+'\r'}));
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
sock.onmessage = function(msg) {
|
sock.onmessage = function(msg) {
|
||||||
|
|
Loading…
Reference in New Issue