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
Trying to understand the Showcase example...
Looks like it's not using the createWithMixins method for Bootstrap but just defining it on window
createWithMixins
Bootstrap
window
// init.coffee Bootstrap = window.Bootstrap = Ember.Namespace.create()
And...
// showcase.coffee Bootstrap = window.Bootstrap Showcase = window.Showcase = Ember.Application.create( LOG_TRANSITIONS: true LOG_VIEW_LOOKUPS: true LOG_ACTIVE_GENERATION: true )
As I understand it, window.Bootstrap is simply made available as a namespace for components like this
window.Bootstrap
Bootstrap.BsAlertComponent = Ember.Component.extend(Bootstrap.TypeSupport, // ... ); // register with handlebars :) Ember.Handlebars.helper 'bs-alert', Bootstrap.BsAlertComponent
I think I see the light... :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Trying to understand the Showcase example...
Looks like it's not using the
createWithMixins
method forBootstrap
but just defining it onwindow
And...
As I understand it,
window.Bootstrap
is simply made available as a namespace for components like thisI think I see the light... :)
The text was updated successfully, but these errors were encountered: