Skip to content

Commit

Permalink
indent yuidoc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
locks committed Jul 27, 2017
1 parent e8c8ff0 commit cefee2b
Showing 1 changed file with 39 additions and 37 deletions.
76 changes: 39 additions & 37 deletions packages/ember/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,35 +418,35 @@ computed.intersect = intersect;
computed.collect = collect;

/**
Defines the hash of localized strings for the current language. Used by
the `Ember.String.loc()` helper. To localize, add string values to this
hash.
Defines the hash of localized strings for the current language. Used by
the `Ember.String.loc()` helper. To localize, add string values to this
hash.
@property STRINGS
@for Ember
@type Object
@private
*/
@property STRINGS
@for Ember
@type Object
@private
*/
Object.defineProperty(Ember, 'STRINGS', {
configurable: false,
get: getStrings,
set: setStrings
});

/**
Whether searching on the global for new Namespace instances is enabled.
Whether searching on the global for new Namespace instances is enabled.
This is only exported here as to not break any addons. Given the new
visit API, you will have issues if you treat this as a indicator of
booted.
This is only exported here as to not break any addons. Given the new
visit API, you will have issues if you treat this as a indicator of
booted.
Internally this is only exposing a flag in Namespace.
Internally this is only exposing a flag in Namespace.
@property BOOTED
@for Ember
@type Boolean
@private
*/
@property BOOTED
@for Ember
@type Boolean
@private
*/
Object.defineProperty(Ember, 'BOOTED', {
configurable: false,
enumerable: false,
Expand Down Expand Up @@ -500,15 +500,15 @@ EmberString.htmlSafe = htmlSafe;
EmberString.isHTMLSafe = isHTMLSafe;

/**
Global hash of shared templates. This will automatically be populated
by the build tools so that you can store your Handlebars templates in
separate files that get loaded into JavaScript at buildtime.
Global hash of shared templates. This will automatically be populated
by the build tools so that you can store your Handlebars templates in
separate files that get loaded into JavaScript at buildtime.
@property TEMPLATES
@for Ember
@type Object
@private
*/
@property TEMPLATES
@for Ember
@type Object
@private
*/
Object.defineProperty(Ember, 'TEMPLATES', {
get: getTemplates,
set: setTemplates,
Expand All @@ -520,25 +520,27 @@ import VERSION from './version';
export { VERSION };

/**
The semantic version
@property VERSION
@type String
@public
*/
The semantic version
@property VERSION
@type String
@public
*/
Ember.VERSION = VERSION;

metal.libraries.registerCoreLibrary('Ember', VERSION);

// require the main entry points for each of these packages
// this is so that the global exports occur properly
import * as views from 'ember-views';

/**
Alias for jQuery
Alias for jQuery
@method $
@for Ember
@public
*/
@method $
@for Ember
@public
*/
Ember.$ = views.jQuery;

Ember.ViewTargetActionSupport = views.ViewTargetActionSupport;
Expand Down Expand Up @@ -605,7 +607,7 @@ if (has('ember-testing')) {
runLoadHooks('Ember');

/**
@module ember
@module ember
*/
export default Ember;

Expand Down

0 comments on commit cefee2b

Please sign in to comment.