Skip to content
Snippets Groups Projects
Commit b61ee50b authored by echicken's avatar echicken :chicken:
Browse files

Slightly hacky enter-to-submit for local & IBBS telegrams.

parent 6cf259ed
No related branches found
No related tags found
No related merge requests found
......@@ -40,20 +40,24 @@ function scrollUp() {
}
function sendTelegram(alias) {
function send_tg(evt) {
if (typeof evt !== 'undefined') evt.preventDefault();
$.getJSON('./api/system.ssjs?call=send-telegram&user=' + alias + '&telegram=' + $('#telegram').val(),
function(data) {
}
);
$('#popUpModal').modal('hide');
}
$('#popUpModalTitle').html('Send a telegram to ' + alias);
$('#popUpModalBody').html(
'<input type="text" class="form-control" ' +
'placeholder="My message" name="telegram" id="telegram">'
'<form id="send-telegram-form">'
+ '<input type="text" class="form-control" placeholder="My message" name="telegram" id="telegram">'
+ '<input type="submit" value="submit" class="hidden">'
+ '</form>'
);
$('#popUpModalActionButton').show();
$('#popUpModalActionButton').click(function () {
$.getJSON(
'./api/system.ssjs?call=send-telegram&user=' +
alias + '&telegram=' + $('#telegram').val(),
function(data) {}
);
$('#popUpModal').modal('hide');
});
$('#send-telegram-form').submit(send_tg);
$('#popUpModalActionButton').click(send_tg);
$('#popUpModal').modal('show');
}
......
......@@ -79,24 +79,29 @@
_sbbs_events.nodelist = _sb_nodelist;
<?xjs if (settings.nodelist_ibbs) { ?>
function _send_ibbs_telegram(sys, host, user) {
$('#popUpModalTitle').html('Send a telegram to ' + user + '@' + sys);
$('#popUpModalBody').html('<input type="text" class="form-control" placeholder="My message" name="telegram" id="telegram">');
$('#popUpModalActionButton').show();
$('#popUpModalActionButton').click(function () {
function send_ibbs_tg(evt) {
if (typeof evt !== 'undefined') evt.preventDefault();
$.getJSON(
'./api/sbbsimsg.ssjs?call=send_telegram'
+ '&username=' + user
+ '&host=' + host
+ '&message=' + $('#telegram').val(),
function (data) {
}
);
$('#popUpModal').modal('hide');
});
}
$('#popUpModalTitle').html('Send a telegram to ' + user + '@' + sys);
$('#popUpModalBody').html(
'<form id="ibbs-telegram-form">'
+ '<input type="text" class="form-control" placeholder="My message" name="telegram" id="telegram">'
+ '<input type="submit" value="submit" class="hidden">'
+ '</form>'
);
$('#popUpModalActionButton').show();
$('#ibbs-telegram-form').submit(send_ibbs_tg);
$('#popUpModalActionButton').click(send_ibbs_tg);
$('#popUpModal').modal('show');
}
......
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