Revert "[staging] Double-clicking on stream row toggles its zoom level."

This reverts commit 6fdb3cacd68635f313f2a8a81edf2d6101cce2cb.

(imported from commit 6e95bd8caa1b7e327f91a8b7aded72b787d1420a)
This commit is contained in:
Steve Howell 2013-11-26 15:53:34 -05:00
parent e9f4612281
commit 90bb398784
1 changed files with 0 additions and 15 deletions

View File

@ -472,21 +472,6 @@ $(function () {
e.stopPropagation();
});
$('#stream_filters').on('dblclick', 'li .subscription_block', function (e) {
if (!feature_flags.topic_zooming) {
return;
}
var stream = $(e.target).parents('li').attr('data-name');
if (stream === active_stream_name()) {
toggle_zoom();
}
e.preventDefault();
e.stopPropagation();
});
$('#stream_filters').on('click', 'li .subscription_block', function (e) {
if (e.metaKey || e.ctrlKey) {
return;