Minor change for #2096

This commit is contained in:
Bas Stottelaar
2015-01-28 00:57:28 +01:00
parent 357c6bef0b
commit 465ffaa5a7

View File

@@ -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;
});