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

Unified Diff: ui/file_manager/file_manager/foreground/js/ui/file_grid.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/file_manager/file_manager/foreground/js/ui/file_grid.js
diff --git a/ui/file_manager/file_manager/foreground/js/ui/file_grid.js b/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
index dca897ed31fb592c1831a8fce458d9320ff32790..e154cdbb5ed4387ade9af2883400a075b4ca5c4d 100644
--- a/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
+++ b/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
@@ -684,7 +684,7 @@ FileGrid.setThumbnailImage_ = function(
thumbnail.style.backgroundSize = 'cover';
thumbnail.style.backgroundImage = 'url(' + dataUrl + ')';
- thumbnail.addEventListener('webkitAnimationEnd', function() {
+ thumbnail.addEventListener('animationend', function() {
// Remove animation css once animation is completed in order not to animate
// again when an item is attached to the dom again.
thumbnail.classList.remove('animate');

Powered by Google App Engine
This is Rietveld 408576698