-small fixes
-about popup without styling added
This commit is contained in:
parent
fce3f390ef
commit
cf004abb44
12 changed files with 74 additions and 7 deletions
|
@ -76,11 +76,11 @@ function createDataGrid(){
|
|||
"aoColumns": columns,
|
||||
"fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
|
||||
if (aData[aData.length-2] == "t")
|
||||
$(nRow).attr("style", "background-color:#166622");
|
||||
$(nRow).attr("class", "playing-list");
|
||||
if (aData[0] == "c")
|
||||
$(nRow).attr("style", "background-color:#61B329");
|
||||
$(nRow).attr("class", "playing-song");
|
||||
else if (aData[0] == "b")
|
||||
$(nRow).attr("style", "background-color:#EE3B3B");
|
||||
$(nRow).attr("class", "gap");
|
||||
return nRow;
|
||||
},
|
||||
"bAutoWidth":false
|
||||
|
|
|
@ -241,6 +241,18 @@ function init() {
|
|||
|
||||
//begin consumer "thread"
|
||||
secondsTimer();
|
||||
|
||||
$('#about-link').qtip({
|
||||
content: $('#about-txt').html(),
|
||||
show: 'mouseover',
|
||||
hide: { when: 'mouseout', fixed: true },
|
||||
position: {
|
||||
corner: {
|
||||
target: 'center',
|
||||
tooltip: 'topRight'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue