Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #20571 from Cwiiis/bug1025064
Browse files Browse the repository at this point in the history
Bug 1025064 - Restore transitions in the task manager. r=alive
  • Loading branch information
Cwiiis authored and rvandermeulen committed Jun 24, 2014
1 parent fe5d10b commit 552ef3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/system/js/task_manager.js
Expand Up @@ -939,15 +939,15 @@
var nextCard = this.nextCard || pseudoCard;
var prevCardStyle = {
pointerEvents: 'none',
MozTransition: currentCard.CARD_TRANSITION
MozTransition: currentCard.MOVE_TRANSITION
};
var nextCardStyle = {
pointerEvents: 'none',
MozTransition: currentCard.CARD_TRANSITION
MozTransition: currentCard.MOVE_TRANSITION
};
var currentCardStyle = {
pointerEvents: 'auto',
MozTransition: currentCard.CARD_TRANSITION
MozTransition: currentCard.MOVE_TRANSITION
};

if (this.deltaX < 0) {
Expand Down

0 comments on commit 552ef3e

Please sign in to comment.