Skip to content

Instantly share code, notes, and snippets.

@nncl
Last active May 20, 2016 14:21
Show Gist options
  • Save nncl/c381a8bd6d5ca3803a88375e189bd503 to your computer and use it in GitHub Desktop.
Save nncl/c381a8bd6d5ca3803a88375e189bd503 to your computer and use it in GitHub Desktop.

Fixing Stuff

To do not let the user touch and scroll the slides, do the following:

// app.js
app.run(function($ionicPlatform, $ionicSlideBoxDelegate) {
  $ionicPlatform.ready(function() {
    $ionicSlideBoxDelegate.enableSlide(false);
  });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment