This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
There is a bug in file friendlyurlsuggest_v2.js
At line 70 and 71 there is
if (message.length > 0) { urlHelper.warningSpan.innerHTML = message; urlHelper.style.warningSpan.display = 'inline'; } else { urlHelper.style.warningSpan.display = 'none'; }
that should be
if (message.length > 0) { urlHelper.warningSpan.innerHTML = message; urlHelper.warningSpan.style.display = 'inline'; } else { urlHelper.warningSpan.style.display = 'none'; }
style is a property of warningSpan
thanks for your work
Luca
Hi,
Thanks for the bug report. This is now fixed in our source code repository so it will be fixed in the next release.
Thanks,
Joe