Added chat input history navigable by the arrow keys

This commit is contained in:
khlieng 2015-02-11 02:35:52 +01:00
parent 21160be407
commit 1faf310ebd
5 changed files with 95 additions and 5 deletions

View file

@ -0,0 +1,10 @@
var Reflux = require('reflux');
var inputHistoryActions = Reflux.createActions([
'add',
'reset',
'increment',
'decrement'
]);
module.exports = inputHistoryActions;