diff options
author | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-02 00:39:53 +0000 |
---|---|---|
committer | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-02 00:39:53 +0000 |
commit | 54e18a5e0c3dd927b08791ed987df5db1f59ba21 (patch) | |
tree | 29f131042981574e612097aa74e3615527708ad7 /remoting/webapp/connection_history.js | |
parent | d5f51841e615700231b131d2a4de43fe09c29c91 (diff) | |
download | chromium_src-54e18a5e0c3dd927b08791ed987df5db1f59ba21.zip chromium_src-54e18a5e0c3dd927b08791ed987df5db1f59ba21.tar.gz chromium_src-54e18a5e0c3dd927b08791ed987df5db1f59ba21.tar.bz2 |
Refactored innerText vs. innerHTML in l10n.js and removed other uses of innerHTML.
BUG=130582
TEST=Manual
Review URL: https://chromiumcodereview.appspot.com/10501005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140141 0039d316-1c4b-4281-b951-d872f2087c98
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) { |