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

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

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: js Created 4 years, 1 month 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: 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 7cac00bc3a4131a61cced2d65def37864f3e96ef..16f94e2fe9e1861934f93ab23697a96db687d86a 100644
--- a/ui/login/account_picker/screen_account_picker.js
+++ b/ui/login/account_picker/screen_account_picker.js
@@ -246,7 +246,7 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
}
}
var showBubbleCallback = function() {
- activatedPod.removeEventListener("webkitTransitionEnd",
+ activatedPod.removeEventListener("transitionend",
showBubbleCallback);
$('bubble').showContentForElement(bubbleAnchor,
attachment,
@@ -254,7 +254,7 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
BUBBLE_OFFSET,
bubblePositioningPadding, true);
};
- activatedPod.addEventListener("webkitTransitionEnd",
+ activatedPod.addEventListener("transitionend",
showBubbleCallback);
ensureTransitionEndEvent(activatedPod);
}

Powered by Google App Engine
This is Rietveld 408576698