diff --git a/dist/js/ionic.js b/dist/js/ionic.js index ade45636cd..197231f116 100644 --- a/dist/js/ionic.js +++ b/dist/js/ionic.js @@ -2488,6 +2488,8 @@ window.ionic = { circular: 'cubic-bezier(0.1, 0.57, 0.1, 1)', circular2: 'cubic-bezier(0.075, 0.82, 0.165, 1)', + bounce: 'cubic-bezier(.02,.69,.67,1)', + // It closes like a high-end toilet seat. Fast, then nice and slow. // Thanks to our @xtheglobe for that. toiletSeat: 'cubic-bezier(0.05, 0.60, 0.05, 0.60)' @@ -2508,7 +2510,7 @@ window.ionic = { invertWheel: false, isVerticalEnabled: true, isHorizontalEnabled: false, - bounceEasing: EASING_FUNCTIONS.circular, + bounceEasing: EASING_FUNCTIONS.bounce, bounceTime: 600 //how long to take when bouncing back in a rubber band }, opts); diff --git a/js/views/scrollView.js b/js/views/scrollView.js index 4e6319f9d2..166811cf92 100644 --- a/js/views/scrollView.js +++ b/js/views/scrollView.js @@ -5,6 +5,8 @@ circular: 'cubic-bezier(0.1, 0.57, 0.1, 1)', circular2: 'cubic-bezier(0.075, 0.82, 0.165, 1)', + bounce: 'cubic-bezier(.02,.69,.67,1)', + // It closes like a high-end toilet seat. Fast, then nice and slow. // Thanks to our @xtheglobe for that. toiletSeat: 'cubic-bezier(0.05, 0.60, 0.05, 0.60)' @@ -25,7 +27,7 @@ invertWheel: false, isVerticalEnabled: true, isHorizontalEnabled: false, - bounceEasing: EASING_FUNCTIONS.circular, + bounceEasing: EASING_FUNCTIONS.bounce, bounceTime: 600 //how long to take when bouncing back in a rubber band }, opts);