Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(764)

Unified Diff: remoting/webapp/background/message_window.js

Issue 503063004: Hangouts Remote Desktop Part VI - Show confirm dialog before retrieving access code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/webapp/background/it2me_helpee_channel.js ('k') | remoting/webapp/base.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/background/message_window.js
diff --git a/remoting/webapp/background/message_window.js b/remoting/webapp/background/message_window.js
index fee4c9b09b3f974f50a6a7637a7bc0b79460f1da..a57684a662b3ea3460a9a0d67c73d5cf03843d27 100644
--- a/remoting/webapp/background/message_window.js
+++ b/remoting/webapp/background/message_window.js
@@ -105,9 +105,11 @@ MessageWindowImpl.prototype.onMessage_ = function(event) {
var cancelButton = document.getElementById('button-secondary');
var messageDiv = document.getElementById('message');
var infoboxDiv = document.getElementById('infobox');
+
document.getElementById('title').innerText = title;
document.querySelector('title').innerText = title;
- messageDiv.innerText = message;
+ messageDiv.innerHTML = message;
+
if (showSpinner) {
messageDiv.classList.add('waiting');
messageDiv.classList.add('prominent');
« no previous file with comments | « remoting/webapp/background/it2me_helpee_channel.js ('k') | remoting/webapp/base.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698