Left and right arrows now scroll through files

Этот коммит содержится в:
nickago
2015-08-06 15:50:37 -07:00
родитель 3f987db4a5
Коммит 29e405aad6

Просмотреть файл

@@ -93,11 +93,22 @@ module.exports = React.createClass({
} }
); );
$(this.getDOMNode()).on('keyup', function(e) {
if(!e) {
return;
} else if (e.keyCode === 39) {
self.handleNext();
} else if (e.keyCode === 37) {
self.handlePrev();
}
});
// keep track of whether or not this component is mounted so we can safely set the state asynchronously // keep track of whether or not this component is mounted so we can safely set the state asynchronously
this.canSetState = true; this.canSetState = true;
}, },
componentWillUnmount: function() { componentWillUnmount: function() {
this.canSetState = false; this.canSetState = false;
$(this.getDOMNode()).off('keyup');
}, },
getPublicLink: function(e) { getPublicLink: function(e) {
data = {}; data = {};