Skip to content

Instantly share code, notes, and snippets.

View ma-pe's full-sized avatar
🐢
Steadily moving forward

Malte Peters ma-pe

🐢
Steadily moving forward
View GitHub Profile
@jacks205
jacks205 / RNMultipleTargetsInstructions.md
Last active February 6, 2024 19:30
Settings up multiple app targets in React-Native
@sundaycrafts
sundaycrafts / preventPullToRefresh.js
Created May 23, 2015 06:16
prevent pull to refresh mobile chrome feature
/**
* inspired by jdduke (http://jsbin.com/qofuwa/2/edit)
*/
var preventPullToRefresh = (function preventPullToRefresh(lastTouchY) {
lastTouchY = lastTouchY || 0;
var maybePrevent = false;