We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Current, when rendering an exposed object's namespaces, the leaf namespaces are initialized as objects:
(function (g) { // -- Namespaces -- g.YUI || (g.YUI = {}); g.YUI.Env || (g.YUI.Env = {}); g.YUI.Env.FOO || (g.YUI.Env.FOO = {}); // -- Exposed -- g.YUI.Env.FOO = "foo"; }(this));
This is unnecessary since the values to the leaf namespaces are assigned directly after the namespaces are initialized.
The text was updated successfully, but these errors were encountered:
09696a7
ericf
Successfully merging a pull request may close this issue.
Current, when rendering an exposed object's namespaces, the leaf namespaces are initialized as objects:
This is unnecessary since the values to the leaf namespaces are assigned directly after the namespaces are initialized.
The text was updated successfully, but these errors were encountered: