mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-21 16:34:01 +01:00
Moved document.ready functions to initThisPage, which will recreate the track table when a new album version is selected (fixes issue with css not loading properly
This commit is contained in:
@@ -168,7 +168,7 @@
|
|||||||
getInfo(elem,id,'album');
|
getInfo(elem,id,'album');
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
function initThisPage() {
|
||||||
$('#album_chooser').click(function() {
|
$('#album_chooser').click(function() {
|
||||||
$('#dialog').dialog();
|
$('#dialog').dialog();
|
||||||
return false;
|
return false;
|
||||||
@@ -187,8 +187,13 @@
|
|||||||
"aaSorting": [],
|
"aaSorting": [],
|
||||||
"bFilter": false,
|
"bFilter": false,
|
||||||
"bInfo": false,
|
"bInfo": false,
|
||||||
"bPaginate": false
|
"bPaginate": false,
|
||||||
|
"bDestroy": true
|
||||||
});
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
$(document).ready(function() {
|
||||||
|
initThisPage();
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user