Created
August 23, 2014 23:14
-
-
Save tdtsh/53c8372f690cd0b018f9 to your computer and use it in GitHub Desktop.
underscore.js の debounce を使うと Android でコケるの発生条件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
index.xml | |
<Alloy> | |
<Window> | |
<Button onClick="testMe">Button</Button> | |
</Window> | |
</Alloy> | |
index.js | |
$.index.open(); | |
var testMe = _.debounce(function() { | |
console.info('test me!'); | |
}, 300, true); | |
https://jira.appcelerator.org/browse/TIMOB-14213 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
実際にはもうちょっとたてこんでたけど大体こんな感じです。