2012-10-27 08:00:09 +00:00
|
|
|
(function ($) {
|
2013-02-23 08:00:22 +00:00
|
|
|
var PUSHOVER = 5;
|
|
|
|
var TOASTY = 4;
|
2013-04-18 08:00:54 +00:00
|
|
|
$(document).ready(function() {
|
2013-04-30 18:18:07 +00:00
|
|
|
if ($("#pushservice").val() > 0) {
|
2013-04-18 08:00:54 +00:00
|
|
|
$('#pushsettings').show();
|
|
|
|
}
|
|
|
|
$("#pushservice").change(function() {
|
2013-04-30 18:18:07 +00:00
|
|
|
if ($(this).val() > 0) {
|
2013-04-18 08:00:54 +00:00
|
|
|
$('#pushsettings').show(500);
|
2012-10-27 08:00:09 +00:00
|
|
|
|
2013-04-30 18:18:07 +00:00
|
|
|
if ($(this).val() == TOASTY) {
|
2013-04-18 08:00:54 +00:00
|
|
|
$('#pushservice_title').text("Device ID");
|
2013-04-30 18:18:07 +00:00
|
|
|
} else if ($(this).val() == PUSHOVER) {
|
2013-04-18 08:00:54 +00:00
|
|
|
$('#pushservice_title').text("User Key");
|
|
|
|
} else {
|
|
|
|
$('#pushservice_title').text("API Key");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$('#pushsettings').hide(500);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}(jQuery));
|