Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: notification.js

Issue 29317001: Relocated icon and redesigned icon popup (Closed)
Patch Set: Merged setBadgeNumber and setBadgeBackgroundColor Created Dec. 13, 2013, 10:36 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: notification.js
===================================================================
--- a/notification.js
+++ b/notification.js
@@ -69,11 +69,11 @@
notification.onClicked();
var texts = Notification.getLocalizedTexts(notification);
- var titleElement = document.getElementById("title");
+ var titleElement = document.getElementById("notification-title");
titleElement.textContent = texts.title;
var docLinks = getDocLinks(notification);
- var messageElement = document.getElementById("message");
+ var messageElement = document.getElementById("notification-message");
insertMessage(messageElement, texts.message, docLinks);
messageElement.addEventListener("click", function(event)

Powered by Google App Engine
This is Rietveld