Private GIT

Skip to content
Snippets Groups Projects
Commit e4f89daf authored by nomaro's avatar nomaro
Browse files

Update configNotifications.js

parent b441a6f3
No related branches found
No related tags found
No related merge requests found
......@@ -280,6 +280,16 @@ $(document).ready(function () {
// we have to call this function on dom ready to create the devices select
get_pushbullet_devices();
$('#testBetaSeries').click(function () {
$('#testBetaSeries-result').html(loading);
var betaseries_username = $("#betaseries_username").val();
var betaseries_password = $("#betaseries_password").val();
$.get(sbRoot + "/home/testBetaSeries", {'username': betaseries_username, 'password': betaseries_password},
function (data) { $('#testBetaSeries-result').html(data); });
});
$('#email_show').change(function () {
var key = parseInt($('#email_show').val(), 10);
$('#email_show_list').val(key >= 0 ? notify_data[key.toString()].list : '');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment