Good day, I would like to know how to send the url of page that the action block is been press to a new window
this is how action block open new window script looks
" window.open('{moduleUrl}share/{fileUri}', '_blank', 'width=500,height=380,menubar=no,status=no,resizable=no,scrollbars=yes,toolbar=no,location=no')"
I tried sending the values within the url like this
window.open('www.google.com?user={moduleUrl}{fileUri}', '_blank', 'width=500,height=380,menubar=no,status=no,resizable=no,scrollbars=yes,toolbar=no,location=no')
but it just print out the variables instead of the actual values.
any help would be greatly appreciated