WEBUI JS: Fix null error in idnode_grid..

This commit is contained in:
Jaroslav Kysela 2014-09-16 12:00:32 +02:00
parent 800949ab0a
commit 6b71fb0388

View file

@ -917,7 +917,8 @@ tvheadend.idnode_grid = function(panel, conf)
};
var update2 = function(o) {
grid.getView().refresh();
if (grid)
grid.getView().refresh();
};
function build(d)