Hello!
I am creating a post function module inside my atlassian connect application. I am using the jiraWorkflowPostFunctions module defined on the atlassian-connect.json file.
By default, the height of the edit/view/etc iframe is 150px. I can adjust the height by running:
AP.resize('100%','600px')
but I would like the iframe to automatically adjust to the height of the parent container (and display vertical scrollbars if my content is taller than that) , instead of having to specify a height in pixels. I tried using 100% instead, but it didn't help.
I know for page modules it is possible to call AP.sizeToParent(), but here it does not seem to help.
Thank you!