diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html index da399148..23b27301 100644 --- a/data/interfaces/default/settings.html +++ b/data/interfaces/default/settings.html @@ -749,8 +749,14 @@ available_notification_agents = sorted(notifiers.available_notification_agents() -

Enable to only get one TV Show or Artist notification for a batch of recently added Episodes or Tracks. Movies are unaffected.
- Note: No Season/Episode or Album/Track metadata will be available.

+

+ Enable to only get one TV Show or Artist notification for a batch of recently added Episodes or Tracks. Movies are unaffected.
+ % if config['notify_recently_added_grandparent'] == 'Checked': + Note: No Season/Episode or Album/Track metadata will be available. + % else: + Note: No Season/Episode or Album/Track metadata will be available. + % endif +

@@ -2055,6 +2061,10 @@ $(document).ready(function() { } getSchedulerTable(); + $("#notify_recently_added_grandparent").change(function () { + var c = this.checked ? '#eb8600' : '#737373'; + $('#notify_recently_added_grandparent_note').css('color', c); + }); }); \ No newline at end of file