| 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');
|
| });
|
|
|
|
|