mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-20 16:03:59 +01:00
Minor change for #2096
This commit is contained in:
@@ -200,11 +200,17 @@
|
|||||||
|
|
||||||
function initThisPage() {
|
function initThisPage() {
|
||||||
$('#album_chooser').click(function() {
|
$('#album_chooser').click(function() {
|
||||||
$('#dialog').dialog({ width: "500px" });
|
$('#dialog').dialog({
|
||||||
|
width: 500,
|
||||||
|
maxHeight: 500
|
||||||
|
});
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
$('#edit_search_term').click(function() {
|
$('#edit_search_term').click(function() {
|
||||||
$('#dialog2').dialog({ width: "500px" });
|
$('#dialog2').dialog({
|
||||||
|
width: 500,
|
||||||
|
maxHeight: 500
|
||||||
|
});
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
$('#refresh_artist').click(function() {
|
$('#refresh_artist').click(function() {
|
||||||
@@ -213,7 +219,7 @@
|
|||||||
initActions();
|
initActions();
|
||||||
setTimeout(function(){
|
setTimeout(function(){
|
||||||
initFancybox();
|
initFancybox();
|
||||||
},1000);
|
}, 1000);
|
||||||
|
|
||||||
$('#track_table').dataTable({
|
$('#track_table').dataTable({
|
||||||
"aaSorting": [],
|
"aaSorting": [],
|
||||||
@@ -245,10 +251,11 @@
|
|||||||
"bFilter": false,
|
"bFilter": false,
|
||||||
"bInfo": false,
|
"bInfo": false,
|
||||||
"bPaginate": false,
|
"bPaginate": false,
|
||||||
|
"bDestroy": true
|
||||||
});
|
});
|
||||||
$("#choose_specific_download_dialog").dialog({
|
$("#choose_specific_download_dialog").dialog({
|
||||||
width: "80%",
|
width: "80%",
|
||||||
height: 500
|
maxHeight: 500
|
||||||
});
|
});
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user