feat(ruby): onUserActionRequired

This commit is contained in:
sshakndr
2025-02-06 15:29:19 +07:00
parent 9d05480f5e
commit a53fa55a89
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# Change Log
- ruby: onUserActionRequired
- python: onUserActionRequired
- php-laravel: onUserActionRequired
- php: onUserActionRequired

View File

@ -92,6 +92,10 @@
innerAlert("Document editor closed successfully");
};
var onUserActionRequired = function () {
console.log("User action required");
};
// the meta information of the document is changed via the meta command
var onMetaChange = function (event) {
if (event.data.favorite !== undefined) {
@ -346,6 +350,7 @@
config.events = {
'onAppReady': onAppReady,
'onDocumentStateChange': onDocumentStateChange,
'onUserActionRequired': onUserActionRequired,
'onError': onError,
'onOutdatedVersion': onOutdatedVersion,
'onMakeActionLink': onMakeActionLink,