mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-03 19:30:41 -04:00
Small IE javascript fix (removed tr.hasAttribute)
This commit is contained in:
parent
aa5c3adb9a
commit
03664de092
@ -489,9 +489,8 @@ SelectedRows = {
|
|||||||
songId: [],
|
songId: [],
|
||||||
click: function(e) {
|
click: function(e) {
|
||||||
var tr = Event.findElement(e,'tr');
|
var tr = Event.findElement(e,'tr');
|
||||||
if (tr.hasAttribute('songid')) {
|
var id = tr.getAttribute('songid');
|
||||||
var id = tr.getAttribute('songid');
|
if (!id) {
|
||||||
} else {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (e.ctrlKey) {
|
if (e.ctrlKey) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user