$(document).ready(function(){ var tableDiv = $('#tableDiv'); tableDiv.on('click', '#checkAll', function(){ var cbToggle = this.checked; $('.dirCheck').each(function(){ this.checked = cbToggle; }); }); $('#submitShowDirs').click(function(){ var dirArr = []; $('.dirCheck').each(function(){ if (true == this.checked){ var show = $(this).attr('id'); var indexer = $(this).closest('tr').find('select').val(); dirArr.push(encodeURIComponent(indexer + '|' + show)); } }); if (0 == dirArr.length) return false; window.location.href = sbRoot + '/home/addShows/addExistingShows' + '?promptForSettings=' + ($('#promptForSettings').prop('checked') ? 'on' : 'off') + '&shows_to_add=' + dirArr.join('&shows_to_add='); }); function loadContent(){ var url = ''; $('.dir_check').each(function(i, w){ if ($(w).is(':checked')){ url += (url.length ? '&' : '') + 'rootDir=' + encodeURIComponent($(w).attr('id')); } }); $('#tableDiv').html('' + ' scanning parent folders...'); $.get(sbRoot + '/home/addShows/massAddTable', url, function(data){ $('#tableDiv').html(data); $('#addRootDirTable').tablesorter({ sortList: [[1,0]], widgets: ['zebra'], headers: { 0: { sorter: false } } }); }); } var last_txt = '', new_text = '', id; $('#rootDirText').change(function(){ if (last_txt == (new_text = $('#rootDirText').val())) return false; last_txt = new_text; $('#rootDirStaticList').html(''); $('#rootDirs').find('option').each(function(i, w){ id = $(w).val(); $('#rootDirStaticList').append('