mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	Merge remote-tracking branch 'origin/stable' into stable
This commit is contained in:
		| @@ -1316,3 +1316,45 @@ export default class NoteTreeWidget extends TabAwareWidget { | ||||
|         noteCreateService.duplicateNote(node.data.noteId, branch.parentNoteId); | ||||
|     } | ||||
| } | ||||
|  | ||||
| export function setupNoteTitleTooltip() { | ||||
|     // Source - https://gist.github.com/jtsternberg/c272d7de5b967cec2d3d | ||||
|     var is_colliding = function( $div1, $div2 ) { | ||||
|         // Div 1 data | ||||
|         var d1_offset             = $div1.offset(); | ||||
|         var d1_height             = $div1.outerHeight( true ); | ||||
|         var d1_width              = $div1.outerWidth( true ); | ||||
|         var d1_distance_from_top  = d1_offset.top + d1_height; | ||||
|         var d1_distance_from_left = d1_offset.left + d1_width; | ||||
|      | ||||
|         // Div 2 data | ||||
|         var d2_offset             = $div2.offset(); | ||||
|         var d2_height             = $div2.outerHeight( true ); | ||||
|         var d2_width              = $div2.outerWidth( true ); | ||||
|         var d2_distance_from_top  = d2_offset.top + d2_height; | ||||
|         var d2_distance_from_left = d2_offset.left + d2_width; | ||||
|      | ||||
|         var not_colliding = ( d1_distance_from_top < d2_offset.top  | ||||
|             || d1_offset.top > d2_distance_from_top  | ||||
|             || d1_distance_from_left < d2_offset.left  | ||||
|             || d1_offset.left > d2_distance_from_left ); | ||||
|      | ||||
|         // Return whether it IS colliding | ||||
|         return ! not_colliding; | ||||
|     }; | ||||
|  | ||||
|     // Detects if there is a collision between the note-title and the  | ||||
|     // center-pane element | ||||
|     let centerPane = document.getElementById("center-pane"); | ||||
|     $(document).on("mouseenter", "span", | ||||
|         function(e) { | ||||
|             if (e.currentTarget.className === 'fancytree-title') { | ||||
|                 if(is_colliding($(centerPane), $(e.currentTarget))) { | ||||
|                     e.currentTarget.title = e.currentTarget.innerText; | ||||
|                 } else { | ||||
|                     e.currentTarget.title = ""; | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|     ); | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user