From f897aa6287a139b9826422de2d04f1c074a86069 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 24 Jul 2013 23:49:29 +0200 Subject: Remove some superfluous functions --- static/js/main.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/static/js/main.js b/static/js/main.js index 201c332..c20c615 100644 --- a/static/js/main.js +++ b/static/js/main.js @@ -263,16 +263,10 @@ var StoryRow = React.createClass({ }); var StoryTable = React.createClass({ - handleMoved: React.autoBind(function(direction) { - this.props.onStoryMoved(direction); - }), - handleSelected: React.autoBind(function(storyId) { - this.props.onStorySelected(storyId); - }), render: function() { var storyNodes = this.props.data.map(function (story) { - return ; }.bind(this)); return ( -- cgit v1.2.3-54-g00ecf