From 9749da9fcc149266323df7dd2b8fb9406e37ca1b Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Tue, 04 Jun 2013 03:08:30 -0400 Subject: [PATCH] Fix possible wrong null assignment to innerHTML on IE10 (#1489145) --- program/js/app.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index dbd171d..d691c92 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -5805,7 +5805,7 @@ for (c=0, len=repl.length; c < len; c++) { cell = document.createElement('td'); - cell.innerHTML = repl[c].html; + cell.innerHTML = repl[c].html || ''; if (repl[c].id) cell.id = repl[c].id; if (repl[c].className) cell.className = repl[c].className; tr.appendChild(cell); -- Gitblit v1.9.1