Sha256: d5b46e2493296ba9447b9fb97c9402b832a16dc752ba0bdd3297a2a781881ebd
Contents?: true
Size: 696 Bytes
Versions: 3
Compression:
Stored size: 696 Bytes
Contents
<% config = Rails.application.config.ember.appkit %> import Resolver from 'resolver'; if (typeof Turbolinks !== 'undefined') { throw new Error("Turbolinks has been detected. Ember Appkit Rails will not function properly alongside Turbolinks."); } <% unless config.enable_logging %> Ember.LOG_VERSION = false; <% end %> var App = Ember.Application.extend({ <% if config.enable_logging %> LOG_ACTIVE_GENERATION: true, LOG_MODULE_RESOLVER: true, LOG_TRANSITIONS: true, LOG_TRANSITIONS_INTERNAL: true, LOG_VIEW_LOOKUPS: true, <% end %> modulePrefix: '<%= config.namespaces.app %>', configPrefix: '<%= config.namespaces.config %>', Resolver: Resolver }); export default App;
Version data entries
3 entries across 3 versions & 1 rubygems