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

Unified Diff: chrome/common/extensions/docs/templates/articles/sencha_framework.html

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
« no previous file with comments | « chrome/common/extensions/docs/templates/articles/api_other.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/templates/articles/sencha_framework.html
diff --git a/chrome/common/extensions/docs/templates/articles/sencha_framework.html b/chrome/common/extensions/docs/templates/articles/sencha_framework.html
index 3045560d5f250fa8dd9171d36234649f561ea568..1429aa9fc625462cf9af2fa1c42ccca9ee34fdf9 100644
--- a/chrome/common/extensions/docs/templates/articles/sencha_framework.html
+++ b/chrome/common/extensions/docs/templates/articles/sencha_framework.html
@@ -481,7 +481,7 @@ function playMedia(data) {
mediaEl.play();
//clear listeners
- playerCt.removeEventListener( 'webkitTransitionEnd', animEnd, false );
+ playerCt.removeEventListener( 'transitionend', animEnd, false );
animEnd = null;
};
@@ -490,8 +490,8 @@ function playMedia(data) {
mediaEl.load();
//animate in player
- playerCt.addEventListener( 'webkitTransitionEnd', animEnd, false );
- playerCt.style.webkitTransform = "translateY(0)";
+ playerCt.addEventListener( 'transitionend', animEnd, false );
+ playerCt.style.transform = "translateY(0)";
//reply postmessage
data.result = true;
« no previous file with comments | « chrome/common/extensions/docs/templates/articles/api_other.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698