Skip to content

Commit

Permalink
#46 iOS (cross)fade, added Android support as well
Browse files Browse the repository at this point in the history
  • Loading branch information
EddyVerbruggen committed Apr 21, 2015
1 parent bfc8ac9 commit dd46c9f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions www/NativePageTransitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ NativePageTransitions.prototype.fade = function (options, onSuccess, onError) {
if (opts.duration == undefined || opts.duration == "null") {
opts.duration = this.globalOptions.duration;
}
if (opts.androiddelay == undefined || opts.androiddelay == "null") {
opts.androiddelay = this.globalOptions.androiddelay;
}
if (opts.iosdelay == undefined || opts.iosdelay == "null") {
opts.iosdelay = this.globalOptions.iosdelay;
}
Expand Down

0 comments on commit dd46c9f

Please sign in to comment.