mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
include event on paste and drrororororop
This commit is contained in:
parent
b3d44b6956
commit
bf6e225aa2
1 changed files with 5 additions and 3 deletions
|
@ -5001,7 +5001,8 @@ function Ace2Inner(){
|
|||
hooks.callAll('acePaste', {
|
||||
editorInfo: editorInfo,
|
||||
rep: rep,
|
||||
documentAttributeManager: documentAttributeManager
|
||||
documentAttributeManager: documentAttributeManager,
|
||||
e: e
|
||||
});
|
||||
})
|
||||
|
||||
|
@ -5011,11 +5012,12 @@ function Ace2Inner(){
|
|||
e.preventDefault();
|
||||
}
|
||||
|
||||
// Call paste hook
|
||||
// Call drop hook
|
||||
hooks.callAll('aceDrop', {
|
||||
editorInfo: editorInfo,
|
||||
rep: rep,
|
||||
documentAttributeManager: documentAttributeManager
|
||||
documentAttributeManager: documentAttributeManager,
|
||||
e: e
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue