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
const composedCreateStore = compose( | |
applyMiddleware( | |
thunkMiddleware, | |
dispatchIdMiddleware, | |
webWorkerMiddleware('/build/worker.js'), | |
() => promiseMiddleware, | |
loggerMiddleware | |
), | |
createStore | |
); |
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
/** | |
* jQuery.fastClick.js | |
* | |
* Work around some mobile browser's 300ms delay on the click event. | |
* | |
* Code based on <http://code.google.com/mobile/articles/fast_buttons.html> | |
* Warning will break href contained in the element bound | |
* @usage | |
* $('button').fastClick(function() { }); | |
* |