Mobideck / appdeck

AppDeck is a mobile hybrid application engine for iOS and Android.
http://www.appdeck.mobi/
47 stars 22 forks source link

Request: Disable reload #84

Closed AIMMOTH closed 7 years ago

AIMMOTH commented 7 years ago

Our app is a fullscreen iframe of our site. It's no problem scrolling down but scrolling up will trigger the reload and reload the whole iframe which resets its state.

We would request the option to disable reload when dragging down the page.

Thanks

RoboKopf commented 7 years ago

You can do it with this meta tag:

meta name="appdeck-disable-pulltorefresh" content="true"

or this js:

app.pulltorefresh.enable(); app.pulltorefresh.disable();

AIMMOTH commented 7 years ago

Perfect, thanks!