diff --git a/data/interfaces/default/album.html b/data/interfaces/default/album.html index ad1eab5c..fdabd9d3 100644 --- a/data/interfaces/default/album.html +++ b/data/interfaces/default/album.html @@ -200,11 +200,17 @@ function initThisPage() { $('#album_chooser').click(function() { - $('#dialog').dialog({ width: "500px" }); + $('#dialog').dialog({ + width: 500, + maxHeight: 500 + }); return false; }); $('#edit_search_term').click(function() { - $('#dialog2').dialog({ width: "500px" }); + $('#dialog2').dialog({ + width: 500, + maxHeight: 500 + }); return false; }); $('#refresh_artist').click(function() { @@ -213,7 +219,7 @@ initActions(); setTimeout(function(){ initFancybox(); - },1000); + }, 1000); $('#track_table').dataTable({ "aaSorting": [], @@ -245,10 +251,11 @@ "bFilter": false, "bInfo": false, "bPaginate": false, + "bDestroy": true }); $("#choose_specific_download_dialog").dialog({ width: "80%", - height: 500 + maxHeight: 500 }); return false; });