I have a connect plugin app which has a custom full screen editor which will open my editor in full screen.
"dynamicContentMacros": [
{
"url": "/my-macro/view",
"description": {
"value": "Add a new macro"
},
"name": {
"value": "New Potter"
},
"key": "new-potter-addon",
"editor": {
"url": "/my-macro/edit",
"cacheable": false,
"width":"100%",
"height":"100%"
},
"autoconvert": {
"urlParameter": "url",
"matchers": [
{
"pattern": "{{localBaseUrl}}/my-macro/view"
},
{
"pattern": "{{localBaseUrl}}/my-macro/edit"
}
]
}
}
],
In page view I put an edit button (<a href="https://edcvrfefeff.ngrok.io/my-macro/edit"</a>) to macro view. WHen click edit button I needed to open the editor in full screen mode. But It redirect to editor but cann't view in full screen. Any documentaion on how to do this?
@Mohomed Rumaiz where you able to find a solution? I do not see how to do this without using Javascript.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.