Skip to content

Commit 4063367

Browse files
committed
use removeChild instead of .remove() (for IE compatibility)
1 parent 18d234c commit 4063367

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devtools/test_dashboard/devtools.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var Tabs = {
3131
var graphDiv = Tabs.getGraph(id);
3232

3333
if(graphDiv) {
34-
graphDiv.remove();
34+
graphDiv.parentNode.removeChild(graphDiv);
3535
}
3636

3737
graphDiv = document.createElement('div');

0 commit comments

Comments
 (0)