mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-01 05:43:23 +00:00
14 lines
464 B
JavaScript
14 lines
464 B
JavaScript
$(document).ready(function () {
|
|
$('#notification-setting-reset-to-default').click(function (e) {
|
|
$('#notification_title').val('');
|
|
$('#notification_body').val('');
|
|
$('#notification_format').val('System default');
|
|
$('#notification_urls').val('');
|
|
e.preventDefault();
|
|
});
|
|
$("#notification-token-toggle").click(function (e) {
|
|
e.preventDefault();
|
|
$('#notification-tokens-info').toggle();
|
|
});
|
|
});
|