diff --git a/data/interfaces/default/config.html b/data/interfaces/default/config.html index 486f79f7..697830d8 100644 --- a/data/interfaces/default/config.html +++ b/data/interfaces/default/config.html @@ -644,6 +644,19 @@ +
+

LMS

+
+ +
+
+
+ + + e.g. http://localhost:9000. Seperate hosts with commas +
+
+
@@ -1217,6 +1230,26 @@ } }); + if ($("#lms").is(":checked")) + { + $("#lmsoptions").show(); + } + else + { + $("#lmsoptions").hide(); + } + + $("#lms").click(function(){ + if ($("#lms").is(":checked")) + { + $("#lmsoptions").slideDown(); + } + else + { + $("#lmsoptions").slideUp(); + } + }); + if ($("#plex").is(":checked")) { $("#plexoptions").show();