Ember.Namespace Class
PUBLIC
Extends: Ember.Object
Defined in: packages/ember-runtime/lib/system/namespace.js:30
Module: ember-runtime
A Namespace is an object usually used to contain other objects or methods such as an application or framework. Create a namespace anytime you want to define one of these new containers.
MyFramework = Ember.Namespace.create({ VERSION: '1.0.0' });
Please login to continue.