-
Notifications
You must be signed in to change notification settings - Fork 28
Description
when using customizer in connections cloud we encounter an error with the url matching:
We use e. g. a url like this one:
And want to have a specific script running when exactly this widgetID is part of the URL.
{
"name": "Custom community widget helper",
"type": "com.ibm.customizer.ui",
"payload": {
"match": {
"url": "W3467c5081b6d_463d_9c79_3ed06e754f29"
},
"include-files": [
"communities/customWidgets/main.js"
],
"include-repo": {
"name": "CNXcustomizer"
}
},
"path": "global",
"state": "enabled"
},
Unfortunately, the match url statement in the customizer extension in the app registry is not able to ask for anything behind the first # in the URL.
Please care for customizer having the full window.location.href available when evaluating matches on the url.
Thank you!