Chromium Code Reviews

Unified Diff: chrome/browser/resources/local_ntp/local_ntp.js

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: rebase Created 3 years, 10 months ago
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
Index: chrome/browser/resources/local_ntp/local_ntp.js
diff --git a/chrome/browser/resources/local_ntp/local_ntp.js b/chrome/browser/resources/local_ntp/local_ntp.js
index e547e3e590c894eb8f091cdde8b3a949c8c1239c..7aeea46c405978aca10f1e58cefc07640ad9e62e 100644
--- a/chrome/browser/resources/local_ntp/local_ntp.js
+++ b/chrome/browser/resources/local_ntp/local_ntp.js
@@ -545,7 +545,7 @@ function handlePostMessage(event) {
*/
function init() {
// Hide notifications after fade out, so we can't focus on links via keyboard.
- $(IDS.NOTIFICATION).addEventListener('webkitTransitionEnd', hideNotification);
+ $(IDS.NOTIFICATION).addEventListener('transitionend', hideNotification);
$(IDS.NOTIFICATION_MESSAGE).textContent =
configData.translatedStrings.thumbnailRemovedNotification;

Powered by Google App Engine