-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Loader]: Several bug fixes. #1743
Conversation
CLA is valid! |
|
||
// We cannot process this dependency yet if it must | ||
// appear after our current module. | ||
isntAfter = !trigger || (trigger.when && trigger.when !== "after"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should avoid negative variable names, I will propose insertAfter
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that will also simplify the code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks.
Seems good. What introduced these bugs? |
Cool. Let's get these in then! |
lang
packs were not being included before the module itself.before
was not working (see: [loader]before
in conditions is being ignored #1661).CSS
module could not require ajs
module. (see: http://jsbin.com/hafibawa/13/edit and CSS module loads out of order #1680).Updated five tests related to
lang
packs that I erroneously changed in #1606.