1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-09-01 19:52:33 +02:00

removed highlighting with mouse click because of unwanted mobile/touchscreen behaviour

This commit is contained in:
Marco Dickert
2017-02-21 22:35:17 +01:00
parent 5f3722ceac
commit f4ff5ec549
2 changed files with 0 additions and 4 deletions

View File

@@ -559,8 +559,6 @@ function IFM() {
$('.clickable-row').click(function(event) { $('.clickable-row').click(function(event) {
if( event.ctrlKey ) { if( event.ctrlKey ) {
$(this).toggleClass( 'selectedItem' ); $(this).toggleClass( 'selectedItem' );
} else {
self.highlightItem( $(this) );
} }
}); });
} }

View File

@@ -124,8 +124,6 @@ function IFM() {
$('.clickable-row').click(function(event) { $('.clickable-row').click(function(event) {
if( event.ctrlKey ) { if( event.ctrlKey ) {
$(this).toggleClass( 'selectedItem' ); $(this).toggleClass( 'selectedItem' );
} else {
self.highlightItem( $(this) );
} }
}); });
} }