File Sharing Talk does not support backlog searching
+
+ @Html.CheckBoxFor(m => m.FileSharingTalkEnabled, new { @class = "inputClass checkClass enabledCheck" })
+
+ @Html.TextBoxFor(m => m.FileSharingTalkUid, new { @class = "inputClass" })
+
+ @Html.TextBoxFor(m => m.FileSharingTalkSecret, new { @class = "inputClass", type = "password" })
+
@@ -188,6 +220,12 @@
if (id == 'NewznabEnabled')
$('#newznabStatus').prop('checked', checked);
+
+ if (id == 'WomblesEnabled')
+ $('#womblesStatus').prop('checked', checked);
+
+ if (id == 'FileSharingTalkEnabled')
+ $('#fileSharingTalkStatus').prop('checked', checked);
$('.indexerStatusButton').button("refresh");
reValidate();
@@ -211,6 +249,12 @@
if (id == 'newznabStatus')
$('#NewznabEnabled').prop('checked', checked);
+
+ if (id == 'womblesStatus')
+ $('#WomblesEnabled').prop('checked', checked);
+
+ if (id == 'fileSharingTalkStatus')
+ $('#FileSharingTalk').prop('checked', checked);
reValidate();
});