• Sheida Saedifaez 14
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
I have developed a lightning component that runs on the Salesforce1 and most of the users have iPad. It involves filling out a rather complex form. I would like to disable the pull to refresh functionality. I used the example below from other post, but what it did it stopped all touch actions, like scroll down
...addEventListener("touchmove", function(e){
e.stopPropagation();
},false)

help please? thanks!