mirror of
https://github.com/trebonian/visual6502.git
synced 2026-01-22 05:21:13 +00:00
[bug]older firefox likes childNodes
This commit is contained in:
@@ -86,6 +86,6 @@ function unselectCell(){
|
||||
function cellEl(n){
|
||||
var r = n>>4;
|
||||
var c = n%16;
|
||||
var e = table.children[r].children[c+1];
|
||||
var e = table.childNodes[r].childNodes[c+1];
|
||||
return e;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user