2014-03-10 01:18:05 -04:00
|
|
|
$(document).ready(function(){
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$.fn.showHideProviders = function() {
|
|
|
|
$('.providerDiv').each(function(){
|
2014-03-10 01:18:05 -04:00
|
|
|
var providerName = $(this).attr('id');
|
|
|
|
var selectedProvider = $('#editAProvider :selected').val();
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
if (selectedProvider+'Div' == providerName)
|
2014-03-10 01:18:05 -04:00
|
|
|
$(this).show();
|
|
|
|
else
|
|
|
|
$(this).hide();
|
|
|
|
|
|
|
|
});
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$.fn.addProvider = function (id, name, url, key, isDefault, showProvider) {
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
url = $.trim(url);
|
|
|
|
if (!url)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!/^https?:\/\//i.test(url))
|
|
|
|
url = "http://" + url;
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
if (url.match('/$') == null)
|
|
|
|
url = url + '/';
|
|
|
|
|
|
|
|
var newData = [isDefault, [name, url, key]];
|
|
|
|
newznabProviders[id] = newData;
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
if (!isDefault){
|
2014-03-10 01:18:05 -04:00
|
|
|
$('#editANewznabProvider').addOption(id, name);
|
|
|
|
$(this).populateNewznabSection();
|
|
|
|
}
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
if ($('#provider_order_list > #'+id).length == 0 && showProvider != false) {
|
|
|
|
var toAdd = '<li class="ui-state-default" id="'+id+'"> <input type="checkbox" id="enable_'+id+'" class="provider_enabler" CHECKED> <a href="'+url+'" class="imgLink" target="_new"><img src="'+sbRoot+'/images/providers/newznab.png" alt="'+name+'" width="16" height="16"></a> '+name+'</li>'
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$('#provider_order_list').append(toAdd);
|
|
|
|
$('#provider_order_list').sortable("refresh");
|
|
|
|
}
|
|
|
|
|
|
|
|
$(this).makeNewznabProviderString();
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$.fn.addTorrentRssProvider = function (id, name, url) {
|
|
|
|
|
|
|
|
var newData = [name, url];
|
|
|
|
torrentRssProviders[id] = newData;
|
|
|
|
|
|
|
|
$('#editATorrentRssProvider').addOption(id, name);
|
|
|
|
$(this).populateTorrentRssSection();
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
if ($('#provider_order_list > #'+id).length == 0) {
|
|
|
|
var toAdd = '<li class="ui-state-default" id="'+id+'"> <input type="checkbox" id="enable_'+id+'" class="provider_enabler" CHECKED> <a href="'+url+'" class="imgLink" target="_new"><img src="'+sbRoot+'/images/providers/torrentrss.png" alt="'+name+'" width="16" height="16"></a> '+name+'</li>'
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$('#provider_order_list').append(toAdd);
|
|
|
|
$('#provider_order_list').sortable("refresh");
|
|
|
|
}
|
|
|
|
|
|
|
|
$(this).makeTorrentRssProviderString();
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-05-19 19:43:01 -04:00
|
|
|
$.fn.updateProvider = function (id, url, key) {
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
newznabProviders[id][1][1] = url;
|
|
|
|
newznabProviders[id][1][2] = key;
|
|
|
|
|
|
|
|
$(this).populateNewznabSection();
|
|
|
|
|
|
|
|
$(this).makeNewznabProviderString();
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$.fn.deleteProvider = function (id) {
|
|
|
|
|
|
|
|
$('#editANewznabProvider').removeOption(id);
|
|
|
|
delete newznabProviders[id];
|
|
|
|
$(this).populateNewznabSection();
|
2014-03-20 14:03:22 -04:00
|
|
|
$('li').remove('#'+id);
|
2014-03-10 01:18:05 -04:00
|
|
|
$(this).makeNewznabProviderString();
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$.fn.updateTorrentRssProvider = function (id, url) {
|
|
|
|
torrentRssProviders[id][1] = url;
|
|
|
|
$(this).populateTorrentRssSection();
|
|
|
|
$(this).makeTorrentRssProviderString();
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$.fn.deleteTorrentRssProvider = function (id) {
|
|
|
|
$('#editATorrentRssProvider').removeOption(id);
|
|
|
|
delete torrentRssProviders[id];
|
|
|
|
$(this).populateTorrentRssSection();
|
2014-03-20 14:03:22 -04:00
|
|
|
$('li').remove('#'+id);
|
2014-03-10 01:18:05 -04:00
|
|
|
$(this).makeTorrentRssProviderString();
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$.fn.populateNewznabSection = function() {
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
var selectedProvider = $('#editANewznabProvider :selected').val();
|
|
|
|
|
|
|
|
if (selectedProvider == 'addNewznab') {
|
2014-03-20 14:03:22 -04:00
|
|
|
var data = ['','',''];
|
2014-03-10 01:18:05 -04:00
|
|
|
var isDefault = 0;
|
|
|
|
$('#newznab_add_div').show();
|
|
|
|
$('#newznab_update_div').hide();
|
|
|
|
} else {
|
|
|
|
var data = newznabProviders[selectedProvider][1];
|
|
|
|
var isDefault = newznabProviders[selectedProvider][0];
|
|
|
|
$('#newznab_add_div').hide();
|
|
|
|
$('#newznab_update_div').show();
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#newznab_name').val(data[0]);
|
|
|
|
$('#newznab_url').val(data[1]);
|
|
|
|
$('#newznab_key').val(data[2]);
|
|
|
|
|
|
|
|
if (selectedProvider == 'addNewznab') {
|
|
|
|
$('#newznab_name').removeAttr("disabled");
|
|
|
|
$('#newznab_url').removeAttr("disabled");
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$('#newznab_name').attr("disabled", "disabled");
|
|
|
|
|
|
|
|
if (isDefault) {
|
|
|
|
$('#newznab_url').attr("disabled", "disabled");
|
|
|
|
$('#newznab_delete').attr("disabled", "disabled");
|
|
|
|
} else {
|
|
|
|
$('#newznab_url').removeAttr("disabled");
|
|
|
|
$('#newznab_delete').removeAttr("disabled");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$.fn.makeNewznabProviderString = function() {
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
var provStrings = new Array();
|
|
|
|
|
|
|
|
for (var id in newznabProviders) {
|
|
|
|
provStrings.push(newznabProviders[id][1].join('|'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#newznab_string').val(provStrings.join('!!!'))
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$.fn.populateTorrentRssSection = function() {
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
var selectedProvider = $('#editATorrentRssProvider :selected').val();
|
|
|
|
|
|
|
|
if (selectedProvider == 'addTorrentRss') {
|
2014-03-20 14:03:22 -04:00
|
|
|
var data = ['','','',''];
|
2014-03-10 01:18:05 -04:00
|
|
|
$('#torrentrss_add_div').show();
|
|
|
|
$('#torrentrss_update_div').hide();
|
|
|
|
} else {
|
|
|
|
var data = torrentRssProviders[selectedProvider];
|
|
|
|
$('#torrentrss_add_div').hide();
|
|
|
|
$('#torrentrss_update_div').show();
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#torrentrss_name').val(data[0]);
|
|
|
|
$('#torrentrss_url').val(data[1]);
|
|
|
|
$('#torrentrss_uname').val(data[2]);
|
|
|
|
$('#torrentrss_passw').val(data[3]);
|
|
|
|
|
|
|
|
if (selectedProvider == 'addTorrentRss') {
|
|
|
|
$('#torrentrss_name').removeAttr("disabled");
|
|
|
|
$('#torrentrss_url').removeAttr("disabled");
|
|
|
|
$('#torrentrss_uname').removeAttr("disabled");
|
|
|
|
$('#torrentrss_passw').removeAttr("disabled");
|
|
|
|
} else {
|
|
|
|
$('#torrentrss_name').attr("disabled", "disabled");
|
|
|
|
$('#torrentrss_url').removeAttr("disabled");
|
|
|
|
$('#torrentrss_uname').removeAttr("disabled");
|
|
|
|
$('#torrentrss_passw').removeAttr("disabled")
|
|
|
|
$('#torrentrss_delete').removeAttr("disabled");
|
|
|
|
}
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$.fn.makeTorrentRssProviderString = function() {
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
var provStrings = new Array();
|
|
|
|
for (var id in torrentRssProviders) {
|
|
|
|
provStrings.push(torrentRssProviders[id].join('|'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#torrentrss_string').val(provStrings.join('!!!'))
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$.fn.refreshProviderList = function() {
|
2014-03-10 01:18:05 -04:00
|
|
|
var idArr = $("#provider_order_list").sortable('toArray');
|
|
|
|
var finalArr = new Array();
|
2014-03-20 14:03:22 -04:00
|
|
|
$.each(idArr, function(key, val) {
|
|
|
|
var checked = + $('#enable_'+val).prop('checked') ? '1' : '0';
|
2014-03-10 01:18:05 -04:00
|
|
|
finalArr.push(val + ':' + checked);
|
|
|
|
});
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$("#provider_order").val(finalArr.join(' '));
|
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$.fn.hideConfigTab = function () {
|
|
|
|
|
|
|
|
$("#config-components").tabs( "disable", 1 );
|
|
|
|
$("#config-components ul li:eq(1)").hide();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
$.fn.showProvidersConfig = function () {
|
|
|
|
|
|
|
|
$("#provider_order_list li").each(function( index ) {
|
|
|
|
|
|
|
|
if ($(this).find("input").attr("checked")) {
|
|
|
|
$(this).addTip();
|
|
|
|
} else {
|
|
|
|
$(this).qtip('destroy');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$.fn.addTip = function() {
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
var config_id = $(this).find("input").attr('id').replace("enable_", "") + "Div";
|
2014-03-20 14:03:22 -04:00
|
|
|
var config_form = '<div id="config"><form id="configForm_tip" action="saveProviders" method="post"><fieldset class="component-group-list tip_scale"><div class="providerDiv_tip">' + $("div[id*="+config_id+"]").html() + '</div></fieldset></form></div>'
|
|
|
|
var provider_name = $.trim($(this).text()).replace('*','')
|
|
|
|
|
|
|
|
if ($("div[id*="+config_id+"]").length == 0) {
|
|
|
|
return false
|
2014-03-10 01:18:05 -04:00
|
|
|
}
|
2014-03-20 14:03:22 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
$(this).qtip({
|
2014-03-20 14:03:22 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
overwrite: true,
|
|
|
|
position: {
|
2014-03-20 14:03:22 -04:00
|
|
|
adjust: {
|
|
|
|
x: 0, y: 0,
|
|
|
|
},
|
|
|
|
my: 'left top',
|
|
|
|
at: 'top right',
|
2014-03-10 01:18:05 -04:00
|
|
|
},
|
|
|
|
show: {
|
2014-03-20 14:03:22 -04:00
|
|
|
event: 'mouseenter', // Show it on click...
|
|
|
|
target: false,
|
|
|
|
solo: true,
|
|
|
|
delay: 90,
|
|
|
|
effect: true,
|
2014-03-10 01:18:05 -04:00
|
|
|
},
|
|
|
|
hide: {
|
2014-03-20 14:03:22 -04:00
|
|
|
fixed: true,
|
|
|
|
delay: 900,
|
2014-03-10 01:18:05 -04:00
|
|
|
},
|
|
|
|
content: {
|
2014-03-20 14:03:22 -04:00
|
|
|
text: config_form,
|
|
|
|
title: {
|
|
|
|
text: provider_name + ' Config',
|
|
|
|
button: true
|
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
},
|
|
|
|
style: {
|
|
|
|
border: {
|
|
|
|
width: 5,
|
|
|
|
radius: 2,
|
|
|
|
color: '#e1e1e1'
|
|
|
|
},
|
|
|
|
width: 350,
|
|
|
|
background: '#FFF',
|
|
|
|
padding: 15,
|
|
|
|
tip: true, // Give it a speech bubble tip with automatic corner detection
|
2014-03-20 14:03:22 -04:00
|
|
|
classes: 'qtip-dark qtip-shadow',
|
|
|
|
},
|
2014-03-10 01:18:05 -04:00
|
|
|
});
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
var newznabProviders = new Array();
|
|
|
|
var torrentRssProviders = new Array();
|
|
|
|
|
|
|
|
$("#provider_order_list li").on('change', function() {
|
|
|
|
if ($(this).find("input").attr("checked")) {
|
|
|
|
$(this).addTip();
|
|
|
|
$(this).qtip('show');
|
|
|
|
} else {
|
|
|
|
$(this).qtip('destroy');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(this).on('change', '.newznab_key', function(){
|
|
|
|
|
|
|
|
var provider_id = $(this).attr('id');
|
|
|
|
provider_id = provider_id.substring(0, provider_id.length-'_hash'.length);
|
|
|
|
|
|
|
|
var url = $('#'+provider_id+'_url').val();
|
|
|
|
var key = $(this).val();
|
|
|
|
|
2014-05-19 19:43:01 -04:00
|
|
|
$(this).updateProvider(provider_id, url, key);
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#newznab_key,#newznab_url').change(function(){
|
|
|
|
|
|
|
|
var selectedProvider = $('#editANewznabProvider :selected').val();
|
|
|
|
|
|
|
|
if (selectedProvider == "addNewznab")
|
|
|
|
return;
|
|
|
|
|
|
|
|
var url = $('#newznab_url').val();
|
|
|
|
var key = $('#newznab_key').val();
|
|
|
|
|
2014-05-19 19:43:01 -04:00
|
|
|
$(this).updateProvider(selectedProvider, url, key);
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#torrentrss_url,#torrentrss_uname,#torrentrss_key').change(function(){
|
|
|
|
|
|
|
|
var selectedProvider = $('#editATorrentRssProvider :selected').val();
|
|
|
|
|
|
|
|
if (selectedProvider == "addTorrentRss")
|
|
|
|
return;
|
|
|
|
|
|
|
|
var url = $('#torrentrss_url').val();
|
|
|
|
|
|
|
|
$(this).updateTorrentRssProvider(selectedProvider, url);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$('#editAProvider').change(function(){
|
|
|
|
$(this).showHideProviders();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#editANewznabProvider').change(function(){
|
|
|
|
$(this).populateNewznabSection();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#editATorrentRssProvider').change(function(){
|
|
|
|
$(this).populateTorrentRssSection();
|
|
|
|
});
|
|
|
|
|
|
|
|
$(this).on('click', '.provider_enabler', function(){
|
|
|
|
$(this).refreshProviderList();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#newznab_add').click(function(){
|
|
|
|
|
|
|
|
var selectedProvider = $('#editANewznabProvider :selected').val();
|
|
|
|
|
|
|
|
var name = $.trim($('#newznab_name').val());
|
|
|
|
var url = $.trim($('#newznab_url').val());
|
|
|
|
var key = $.trim($('#newznab_key').val());
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!url)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!key)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var params = {name: name};
|
|
|
|
|
|
|
|
// send to the form with ajax, get a return value
|
|
|
|
$.getJSON(sbRoot + '/config/providers/canAddNewznabProvider', params,
|
|
|
|
function(data){
|
|
|
|
if (data.error != undefined) {
|
|
|
|
alert(data.error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$(this).addProvider(data.success, name, url, key, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.newznab_delete').click(function(){
|
|
|
|
|
|
|
|
var selectedProvider = $('#editANewznabProvider :selected').val();
|
|
|
|
|
|
|
|
$(this).deleteProvider(selectedProvider);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#torrentrss_add').click(function(){
|
|
|
|
var selectedProvider = $('#editATorrentRssProvider :selected').val();
|
|
|
|
|
|
|
|
var name = $('#torrentrss_name').val();
|
|
|
|
var url = $('#torrentrss_url').val();
|
2014-03-20 14:03:22 -04:00
|
|
|
var params = { name: name, url: url}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
// send to the form with ajax, get a return value
|
|
|
|
$.getJSON(sbRoot + '/config/providers/canAddTorrentRssProvider', params,
|
|
|
|
function(data){
|
|
|
|
if (data.error != undefined) {
|
|
|
|
alert(data.error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$(this).addTorrentRssProvider(data.success, name, url);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.torrentrss_delete').on('click', function(){
|
|
|
|
var selectedProvider = $('#editATorrentRssProvider :selected').val();
|
|
|
|
$(this).deleteTorrentRssProvider(selectedProvider);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$(this).on('change', "[class='providerDiv_tip'] input", function(){
|
|
|
|
$('div .providerDiv ' + "[name=" + $(this).attr('name') + "]").replaceWith($(this).clone());
|
|
|
|
$('div .providerDiv ' + "[newznab_name=" + $(this).attr('id') + "]").replaceWith($(this).clone());
|
|
|
|
});
|
|
|
|
|
|
|
|
$(this).on('change', "[class='providerDiv_tip'] select", function(){
|
|
|
|
|
|
|
|
$(this).find('option').each( function() {
|
|
|
|
if ($(this).is(':selected')) {
|
|
|
|
$(this).prop('defaultSelected', true)
|
|
|
|
} else {
|
|
|
|
$(this).prop('defaultSelected', false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('div .providerDiv ' + "[name=" + $(this).attr('name') + "]").empty().replaceWith($(this).clone())});
|
|
|
|
|
|
|
|
$(this).on('change', '.enabler', function(){
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
$('.content_'+$(this).attr('id')).each( function() {
|
|
|
|
$(this).show()
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
$('.content_'+$(this).attr('id')).each( function() {
|
|
|
|
$(this).hide()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".enabler").each(function(){
|
|
|
|
if (!$(this).is(':checked')) {
|
|
|
|
$('.content_'+$(this).attr('id')).hide();
|
|
|
|
} else {
|
|
|
|
$('.content_'+$(this).attr('id')).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
$.fn.makeTorrentOptionString = function(provider_id) {
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
var seed_ratio = $('.providerDiv_tip #'+provider_id+'_seed_ratio').prop('value');
|
|
|
|
var seed_time = $('.providerDiv_tip #'+provider_id+'_seed_time').prop('value');
|
|
|
|
var process_met = $('.providerDiv_tip #'+provider_id+'_process_method').prop('value');
|
|
|
|
var option_string = $('.providerDiv_tip #'+provider_id+'_option_string');
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
option_string.val([seed_ratio, seed_time, process_met].join('|'))
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$(this).on('change', '.seed_option', function(){
|
|
|
|
|
|
|
|
var provider_id = $(this).attr('id').split('_')[0];
|
|
|
|
|
|
|
|
$(this).makeTorrentOptionString(provider_id);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// initialization stuff
|
|
|
|
|
|
|
|
$(this).hideConfigTab();
|
|
|
|
|
|
|
|
$(this).showHideProviders();
|
|
|
|
|
|
|
|
$(this).showProvidersConfig();
|
|
|
|
|
|
|
|
$("#provider_order_list").sortable({
|
|
|
|
placeholder: 'ui-state-highlight',
|
|
|
|
update: function (event, ui) {
|
|
|
|
$(this).refreshProviderList();
|
|
|
|
ui.item.qtip('reposition');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#provider_order_list").disableSelection();
|
|
|
|
|
|
|
|
});
|