From 465ffaa5a776fef3eedecbe1b95140c092cb7812 Mon Sep 17 00:00:00 2001 From: Bas Stottelaar Date: Wed, 28 Jan 2015 00:57:28 +0100 Subject: [PATCH] Minor change for #2096 --- data/interfaces/default/album.html | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) 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; });