1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 11:02:21 -05:00

Fix saving rootDirs (refresh before save)

This commit is contained in:
echel0n 2014-07-21 23:14:10 -07:00
parent 3a2b67330c
commit b63dffa3a0

View File

@ -40,8 +40,8 @@ $(document).ready(function() {
if (is_default) if (is_default)
setDefault($('#rootDirs option').attr('id')); setDefault($('#rootDirs option').attr('id'));
$.get(sbRoot+'/config/general/saveRootDirs', { rootDirString: $('#rootDirText').val() });
refreshRootDirs(); refreshRootDirs();
$.get(sbRoot+'/config/general/saveRootDirs', { rootDirString: $('#rootDirText').val() });
} }
function editRootDir(path) { function editRootDir(path) {
@ -141,7 +141,7 @@ $(document).ready(function() {
function refreshRootDirs() { function refreshRootDirs() {
if (!$("#rootDirs").length) if (!$("#rootDirs").length)
return return;
var do_disable = 'true'; var do_disable = 'true';
@ -150,7 +150,7 @@ $(document).ready(function() {
// if nothing's selected then select the default // if nothing's selected then select the default
if (!$("#rootDirs option:selected").length && $('#whichDefaultRootDir').val().length) if (!$("#rootDirs option:selected").length && $('#whichDefaultRootDir').val().length)
$('#'+$('#whichDefaultRootDir').val()).prop("selected", true) $('#'+$('#whichDefaultRootDir').val()).prop("selected", true);
// if something's selected then we have some behavior to figure out // if something's selected then we have some behavior to figure out
if ($("#rootDirs option:selected").length) { if ($("#rootDirs option:selected").length) {
@ -183,7 +183,7 @@ $(document).ready(function() {
// set up buttons on page load // set up buttons on page load
syncOptionIDs(); syncOptionIDs();
setDefault($('#whichDefaultRootDir').val(), true) setDefault($('#whichDefaultRootDir').val(), true);
refreshRootDirs(); refreshRootDirs();
}); });