diff options
author | World Wide Web Owner <www@s6.what.cd> | 2011-04-13 15:36:33 +0000 |
---|---|---|
committer | World Wide Web Owner <www@s6.what.cd> | 2011-04-13 15:36:33 +0000 |
commit | d3b5585c3e55412deca819639891b87fd49c57c8 (patch) | |
tree | 04436b5d03ef32bb26ff6c4529288003cef92887 /static/functions | |
parent | d208bf88176c4b0844bd1411c82965410beae967 (diff) | |
download | Gazelle-d3b5585c3e55412deca819639891b87fd49c57c8.zip Gazelle-d3b5585c3e55412deca819639891b87fd49c57c8.tar.gz Gazelle-d3b5585c3e55412deca819639891b87fd49c57c8.tar.bz2 |
Comment out title field check from audiobook edits
Re-use get_thread_info function
Enable VBR checkbox in audiobook edit form
Pre-fill bitrate fields in torrent edit form
Diffstat (limited to 'static/functions')
-rw-r--r-- | static/functions/browse.js | 1 | ||||
-rw-r--r-- | static/functions/upload.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/static/functions/browse.js b/static/functions/browse.js index 7ca942e..1afb991 100644 --- a/static/functions/browse.js +++ b/static/functions/browse.js @@ -166,6 +166,7 @@ function unbookmark(groupid,newname) { ajax.get("bookmarks.php?action=remove&auth=" + authkey + "&groupid=" + groupid,function() { $('#group_' + groupid).remove(); $('.groupid_' + groupid).remove(); + $('.image_group_' + groupid).remove(); }); } else { var lnk = $('#bookmarklink'+groupid).raw(); diff --git a/static/functions/upload.js b/static/functions/upload.js index 6d68fab..0335834 100644 --- a/static/functions/upload.js +++ b/static/functions/upload.js @@ -214,7 +214,7 @@ function CheckVA() { function CheckYear() { var media = $('#media').raw().options[$('#media').raw().selectedIndex].text; - if(media == "Vinyl" || media == "Soundboard" || media == "Cassette") { + if(media == "---" || media == "Vinyl" || media == "Soundboard" || media == "Cassette") { media = "old"; } var x = $('#year').raw(); |