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

Unified Diff: samples/chat/js_client/code.js

Issue 11418075: Dartifying members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing menuelement.compact exclusion. Created 8 years, 1 month 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 | « samples/calculator/tape.dart ('k') | samples/dartcombat/setup.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/chat/js_client/code.js
diff --git a/samples/chat/js_client/code.js b/samples/chat/js_client/code.js
index fb0e8ada988a7c65506744c1493c7aea779a9165..3f69291c77e22e0850946936b0b202fae91d20ad 100644
--- a/samples/chat/js_client/code.js
+++ b/samples/chat/js_client/code.js
@@ -196,7 +196,7 @@ function uiAddMessage(message) {
} else {
text += "timeout";
}
- p.innerHTML = text;
+ p.innerHtml = text;
if (messages.firstChild == null) {
messages.appendChild(p);
} else {
@@ -281,7 +281,7 @@ function writeReadyState(request) {
case 3: readyStateName = "LOADING"; break;
case 4: readyStateName = "DONE"; break;
}
- p.innerHTML =
+ p.innerHtml =
"Ready state " + readyStateName + " (" + request.readyState + ")";
window.document.body.appendChild(p);
}
« no previous file with comments | « samples/calculator/tape.dart ('k') | samples/dartcombat/setup.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698