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

Unified Diff: chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/overlay.js

Issue 2534693002: Reduce usage of webkit prefixes in extension examples (Closed)
Patch Set: rebase Created 3 years, 10 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
Index: chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/overlay.js
diff --git a/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/overlay.js b/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/overlay.js
index 056bf1ee7dd422a21769ca8e2f8333197b5f0d01..c5fde49301d624c52355de77e969299e033c046a 100644
--- a/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/overlay.js
+++ b/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/overlay.js
@@ -86,7 +86,7 @@ cr.define('cr.ui.overlay', function() {
if (overlayPage)
overlayPage.classList.add('pulse');
});
- overlay.addEventListener('webkitAnimationEnd', function(e) {
+ overlay.addEventListener('animationend', function(e) {
e.target.classList.remove('pulse');
});
}

Powered by Google App Engine
This is Rietveld 408576698