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

Unified Diff: ui/login/account_picker/screen_account_picker.js

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only 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 | « ui/login/account_picker/screen_account_picker.css ('k') | ui/login/account_picker/user_pod_row.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/login/account_picker/screen_account_picker.js
diff --git a/ui/login/account_picker/screen_account_picker.js b/ui/login/account_picker/screen_account_picker.js
index 6a534ab9ce344bf9ae91dcf532b575abaedcbdd2..d66258e82a379155453c9f2700674540507f0833 100644
--- a/ui/login/account_picker/screen_account_picker.js
+++ b/ui/login/account_picker/screen_account_picker.js
@@ -250,7 +250,7 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
}
}
var showBubbleCallback = function() {
- activatedPod.removeEventListener("webkitTransitionEnd",
+ activatedPod.removeEventListener("transitionend",
showBubbleCallback);
$('bubble').showContentForElement(bubbleAnchor,
attachment,
@@ -258,7 +258,7 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
BUBBLE_OFFSET,
bubblePositioningPadding, true);
};
- activatedPod.addEventListener("webkitTransitionEnd",
+ activatedPod.addEventListener("transitionend",
showBubbleCallback);
ensureTransitionEndEvent(activatedPod);
}
« no previous file with comments | « ui/login/account_picker/screen_account_picker.css ('k') | ui/login/account_picker/user_pod_row.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698