Remove debug info

This commit is contained in:
John F
2015-04-23 23:09:41 -04:00
parent f66e4fdc95
commit 170e4de526
-12
View File
@@ -30462,8 +30462,6 @@ var TorrentList = React.createClass({displayName: "TorrentList",
var listPadding = getListPadding(); var listPadding = getListPadding();
var torrentRange = getTorrentRange(); var torrentRange = getTorrentRange();
console.log('viewport padding change, new min: ' + torrentRange.min + ' new max: ' + torrentRange.max);
this.setState({ this.setState({
minTorrentIndex: torrentRange.min, minTorrentIndex: torrentRange.min,
maxTorrentIndex: torrentRange.max, maxTorrentIndex: torrentRange.max,
@@ -30684,10 +30682,6 @@ var dispatcherIndex = AppDispatcher.register(function(action) {
case ClientConstants.REMOVE_TORRENT: case ClientConstants.REMOVE_TORRENT:
getClientStats(); getClientStats();
break; break;
default:
// nothing
} }
}); });
@@ -30819,9 +30813,6 @@ var dispatcherIndex = AppDispatcher.register(function(action) {
TorrentStore.emitChange(); TorrentStore.emitChange();
break; break;
default:
// nothing
} }
}); });
@@ -31028,9 +31019,6 @@ var dispatcherIndex = AppDispatcher.register(function(action) {
UIStore.emitViewportPaddingChange(); UIStore.emitViewportPaddingChange();
break; break;
default:
// nothing
} }
}); });