Skip to content

1.2.0

Compare
Choose a tag to compare
@roman-rr roman-rr released this 14 Dec 18:49
· 198 commits to master since this release

BREAKING CHANGES

  • Improved .preventDismiss() method and gesture #87
const settings = {
  ...
  onWillDismiss: (e) => {
    if (e) {
      console.log(e.prevented);
    }
  }
}

const myPane = new CupertinoPane('.cupertino-pane', settings);
myPane.present({animate: true});
myPane.preventDismiss(true);

Bug Fixes

  • Fixed setBreakpoints() method for inversed pane #92
  • Fixed textarea overflow scroll. Pane disallowed from drag if scroll available and target element is textarea #88
  • Fixed horizontal scroll inside pane #102
  • Fixed keyboard issues on Android devices with cordova webview
  • Fixed drag event and stops laggy on drag pane with touchAngle option #102
  • Fixed onTransitionEnd callback with top position #105
  • Fixed currentBreak() detection for onDragEnd callbac #106
  • Fixed height calculation for overflow element #104