Skip to content

Commit

Permalink
Fix function undefined error
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingcheung committed Oct 8, 2015
1 parent a8b0883 commit 8056af3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/WinJS/Animations.js
Original file line number Diff line number Diff line change
Expand Up @@ -1526,7 +1526,7 @@ define([
},

exitContent: function (outgoing, offset) {
return exitAnimation(outgoing, offset, "exitContent,StartTM", "exitContent,StopTM");
return this.exitAnimation(outgoing, offset, "exitContent,StartTM", "exitContent,StopTM");
},

dragBetweenEnter: function (target, offset) {
Expand Down Expand Up @@ -1782,7 +1782,7 @@ define([
},

exitPage: function (outgoing, offset) {
return exitAnimation(outgoing, offset, "exitPage,StartTM", "exitPage,StopTM");
return this.exitAnimation(outgoing, offset, "exitPage,StartTM", "exitPage,StopTM");
},

crossFade: function (incoming, outgoing) {
Expand Down

0 comments on commit 8056af3

Please sign in to comment.