...
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
//...
'editor.menu.definition': {
//...,
'tools': [
//...,
'personalDataProtection',
//...
],
//...
},
//... |
API
editor.checkPersonalData(callback)
Status colour Yellow title Release 2.13.0 or Above
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.checkPersonalData(function (result) => { if (!result) { // If the Personal information check does not pass, open the personal information dialog editor.getUIManager().showDialog('personalDataProtection'); } }); |
...