Skip to content

Commit

Permalink
Disable row value expanding on double click
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxa committed Aug 29, 2021
1 parent 5bb3d09 commit bfd842a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/views/panes/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,10 @@ class Content extends PaneBase {

//console.log("Rendered " + (Date.now() - sTime) + "ms");

this.content.find('span.text').bind('dblclick', (e) => {
$u.stopEvent(e);
$u(e.target.parentNode).toggleClass('expanded');
});
// this.content.find('span.text').bind('dblclick', (e) => {
// $u.stopEvent(e);
// $u(e.target.parentNode).toggleClass('expanded');
// });

//console.log("Expanders " + (Date.now() - sTime) + "ms");

Expand Down

0 comments on commit bfd842a

Please sign in to comment.