diff options
Diffstat (limited to 'remoting/webapp/connection_history.js')
-rw-r--r-- | remoting/webapp/connection_history.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/webapp/connection_history.js b/remoting/webapp/connection_history.js index da28701..dc10d22 100644 --- a/remoting/webapp/connection_history.js +++ b/remoting/webapp/connection_history.js @@ -165,7 +165,7 @@ remoting.ConnectionHistory.prototype.load = function() { var history = []; // Remove existing entries from the DOM and repopulate. // TODO(jamiewalch): Enforce the filter. - this.historyEntries_.innerHTML = ''; + this.historyEntries_.innerText = ''; for (var i in history) { var connection = new remoting.ConnectionHistory.Entry(history[i]); if (connection.valid) { |