mirror of
				https://github.com/ether/etherpad-lite.git
				synced 2025-11-04 02:01:30 +01:00 
			
		
		
		
	Add a aceSelectionChanged hook to allow plugins to react when the cursor
location changes.
This commit is contained in:
		
							parent
							
								
									2003968263
								
							
						
					
					
						commit
						008d4e653c
					
				@ -339,3 +339,14 @@ Things in context:
 | 
			
		||||
 | 
			
		||||
This hook is provided to allow author highlight style to be modified.
 | 
			
		||||
Registered hooks should return 1 if the plugin handles highlighting.  If no plugin returns 1, the core will use the default background-based highlighting.
 | 
			
		||||
 | 
			
		||||
## aceSelectionChanged
 | 
			
		||||
Called from: src/static/js/ace2_inner.js
 | 
			
		||||
 | 
			
		||||
Things in context:
 | 
			
		||||
 | 
			
		||||
1. rep - information about where the user's cursor is
 | 
			
		||||
2. documentAttributeManager - information about attributes in the document
 | 
			
		||||
 | 
			
		||||
This hook allows a plugin to react to a cursor or selection change,
 | 
			
		||||
perhaps to update a UI element based on the style at the cursor location.
 | 
			
		||||
 | 
			
		||||
@ -2894,6 +2894,11 @@ function Ace2Inner(){
 | 
			
		||||
      rep.selFocusAtStart = newSelFocusAtStart;
 | 
			
		||||
      currentCallStack.repChanged = true;
 | 
			
		||||
 | 
			
		||||
      hooks.callAll('aceSelectionChanged', {
 | 
			
		||||
        rep: rep,
 | 
			
		||||
        documentAttributeManager: documentAttributeManager,
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      return true;
 | 
			
		||||
      //console.log("selStart: %o, selEnd: %o, focusAtStart: %s", rep.selStart, rep.selEnd,
 | 
			
		||||
      //String(!!rep.selFocusAtStart));
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user