fix(demos): tweak debounce default

This commit is contained in:
Drew Rygh
2015-10-13 14:32:55 -05:00
parent c9f0c08de2
commit 9ef7416c26

View File

@@ -26,7 +26,7 @@ class DemoApp {
this.nextPage = ActionSheetPage;
}
let nav = this.app.getComponent('nav');
helpers.debounce(nav.setRoot(this.nextPage), 100, true);
helpers.debounce(nav.setRoot(this.nextPage), 500, true);
}
});
});