fix iOS easing

This commit is contained in:
Adam Bradley
2015-05-05 14:34:31 -05:00
parent 2e28dbb6cf
commit 9915669859
2 changed files with 1 additions and 10 deletions

View File

@@ -186,15 +186,6 @@ export class NavBase {
// resolve that this push has completed
resolve();
// on the next frame, hide the item that's cached
util.dom.raf(() => {
// ensure it's state is still cached
if (leavingItem.state === CACHED_STATE && leavingItem.navItem) {
// CSS default is display:none, so setting to '' does the trick
leavingItem.navItem.domElement.style.display = '';
}
});
});
});