mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
feat(aside): reveal/overlay aside using Animation
This commit is contained in:
@ -127,9 +127,13 @@
|
||||
if ((property == 'direction') && (directions.indexOf(timingInput[property]) == -1)) {
|
||||
return;
|
||||
}
|
||||
if (property == 'playbackRate' && timingInput[property] !== 1 && shared.isDeprecated('AnimationEffectTiming.playbackRate', '2014-11-28', 'Use Animation.playbackRate instead.')) {
|
||||
return;
|
||||
}
|
||||
|
||||
// IONIC HACK
|
||||
// NATIVE CHROME STILL USES THIS, SO DON'T HAVE THE POLYFILL THROW ERRORS
|
||||
// if (property == 'playbackRate' && timingInput[property] !== 1 && shared.isDeprecated('AnimationEffectTiming.playbackRate', '2014-11-28', 'Use Animation.playbackRate instead.')) {
|
||||
// return;
|
||||
// }
|
||||
|
||||
timing[property] = timingInput[property];
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user