If selecting text, don't link to order on row click.

This commit is contained in:
Mike Jolley 2018-02-12 11:07:04 +00:00
parent 6af5bc3d19
commit 20a7cc392b
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,10 @@ jQuery( function( $ ) {
return true;
}
if ( window.getSelection && window.getSelection().toString().length ) {
return true;
}
var $row = $( this ).closest( 'tr' ),
href = $row.find( 'a.order-view' ).attr( 'href' );