Send necessary data in onopen

This commit is contained in:
Bálint Bokros 2017-11-27 19:01:11 +01:00
parent 5a295de426
commit fac9202b3d
1 changed files with 11 additions and 0 deletions

View File

@ -22,7 +22,18 @@ $('form#anchor_login_event').on('submit', (function (event) {
function (data) {}
);
}));
ws.onopen = function () {
ws.send(JSON.stringify({
'anchor': 'reset',
'data': ''
}));
// init webide
ws.send(JSON.stringify({
'anchor': 'anchor_webide',
'data': ''
}));
};
ws.onmessage = function (messageEvent) {
let message = JSON.parse(messageEvent.data);