Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.5.0-beta2
-
None
Description
In beta2 the logic was changed for how it looks for the script tags to figure out the container, etc. The for loop is broken.
If I change
for(var i = 0; !scriptEls && i < scriptEls.length; i++) {
to
for(var i = 0; i < scriptEls.length; i++) {
It fixes the issue and the right container is used.
I would like to see this fixed for beta2 if possible.
Attachments
Attachments
Issue Links
- relates to
-
SHINDIG-1774 init.js blindly assumes that the JS servlet feature URL is the last script tag defined
- Closed