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

Unified Diff: chrome/browser/resources/options/chromeos/change_picture_options.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
Index: chrome/browser/resources/options/chromeos/change_picture_options.js
diff --git a/chrome/browser/resources/options/chromeos/change_picture_options.js b/chrome/browser/resources/options/chromeos/change_picture_options.js
index e919a6c22699a0f0583fdf066b0f83a992ff7512..5034ca2099439978062c1fe311752619035e404a 100644
--- a/chrome/browser/resources/options/chromeos/change_picture_options.js
+++ b/chrome/browser/resources/options/chromeos/change_picture_options.js
@@ -87,11 +87,11 @@ cr.define('options', function() {
$('flip-photo').addEventListener(
'click', this.handleFlipPhoto_.bind(this));
$('user-image-stream-crop').addEventListener(
- 'webkitTransitionEnd', function(e) {
+ 'transitionend', function(e) {
previewElement.classList.remove('animation');
});
$('user-image-preview-img').addEventListener(
- 'webkitTransitionEnd', function(e) {
+ 'transitionend', function(e) {
previewElement.classList.remove('animation');
});
« no previous file with comments | « chrome/browser/resources/options/browser_options.js ('k') | chrome/browser/resources/options/chromeos/internet_detail.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698