[Documentation] Add missing default extension points (#3014)

This commit is contained in:
Simon Hartley 2024-11-12 06:52:13 +00:00 committed by GitHub
parent 3dc73f6d04
commit d39dd0e576
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,6 +22,8 @@ Extensions can override the following default extension points to add or change
```javascript ```javascript
{ {
init: function(api) {return null;},
getSelectors: function() {return null;},
onEvent : function(name, evt) {return true;}, onEvent : function(name, evt) {return true;},
transformResponse : function(text, xhr, elt) {return text;}, transformResponse : function(text, xhr, elt) {return text;},
isInlineSwap : function(swapStyle) {return false;}, isInlineSwap : function(swapStyle) {return false;},