disable "pull to ..." on lightning component in sf1
Workaround: add the component to lightning app builder (it can be the only thing on the page).
It'll have a header (name of the app) but no pull to refresh/see more.
I think that I found a better solution:
In your .cmp file, add an aura:id to the top-level , e.g.
Then define the following renderer:
({
afterRender : function(component, helper) {
this.superAfterRender();
var targetEl = component.find("mainapp").getElement();
targetEl.addEventListener("touchmove", function(e) {
e.stopPropagation();
}, false);
}
})