-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[loader] Fix group comboBase leaking into YUI modules #1832
Conversation
CLA is valid! |
The Travis failure seems to be due to the lack of support for @caridy can I get a +1? |
Needs a HISTORY.md entry as well please. |
LGTM |
+1 |
This seems to have broken the case where you're not overriding the comboBase in a group. comboBase = group.comboBase; overrides the This is causing modules in combo loaded groups (that don't specify their own comboBase) in our environment to be requested with the URL:
Changing the aforementioned line to the following resolves the issue for us: comboBase = group.comboBase || comboBase; However I don't have time to put together a full pull request + tests etc right now. |
…ng is specified This fixes a regression caused by yui#1832.
…ng is specified This fixes a regression caused by yui#1832.
…ng is specified This fixes a regression caused by yui#1832.
…ng is specified This fixes a regression caused by yui#1832.
…ng is specified This fixes a regression caused by yui#1832.
…ng is specified This fixes a regression caused by yui#1832.
There is an issue in Loader when YUI is configured to use more than one
comboBase
. In some cases YUI modules likecookie
may be loaded from the group'scomboBase
.