Skip to content

Commit

Permalink
[app] Build
Browse files Browse the repository at this point in the history
min files are no change.
  • Loading branch information
okuryu committed Feb 13, 2014
1 parent 50e4f5a commit 33a9646
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 23 deletions.
2 changes: 1 addition & 1 deletion build/app-content/app-content-coverage.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/app-content/app-content-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ AppContent.prototype = {
@param {View} callback.view A reference to the new `activeView`.
@chainable
@since 3.7.0
@see App.showView()
**/
Expand Down
1 change: 1 addition & 0 deletions build/app-content/app-content.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ AppContent.prototype = {
@param {View} callback.view A reference to the new `activeView`.
@chainable
@since 3.7.0
@see App.showView()
**/
Expand Down
2 changes: 1 addition & 1 deletion build/model-list/model-list-coverage.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions build/model-list/model-list-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ Y.ModelList = Y.extend(ModelList, Y.Base, {
@param {Number} callback.index Index of the current model.
@param {ModelList} callback.list The ModelList being filtered.
@return {Array|ModelList} Array of models for which the callback function
@return {Model[]|ModelList} Array of models for which the callback function
returned a truthy value (empty if it never returned a truthy value). If
the `options.asList` option is truthy, a new ModelList instance will be
returned instead of an array.
Expand Down Expand Up @@ -451,7 +451,7 @@ Y.ModelList = Y.extend(ModelList, Y.Base, {
@method get
@param {String} name Attribute name or object property path.
@return {Any|Array} Attribute value or array of attribute values.
@return {Any|Any[]} Attribute value or array of attribute values.
@see Model.get()
**/
get: function (name) {
Expand Down Expand Up @@ -538,7 +538,7 @@ Y.ModelList = Y.extend(ModelList, Y.Base, {
@method invoke
@param {String} name Name of the method to call on each model.
@param {Any} [args*] Zero or more arguments to pass to the invoked method.
@return {Array} Array of return values, indexed according to the index of
@return {Any[]} Array of return values, indexed according to the index of
the model on which the method was called.
**/
invoke: function (name /*, args* */) {
Expand Down Expand Up @@ -891,7 +891,7 @@ Y.ModelList = Y.extend(ModelList, Y.Base, {
Returns an array containing the models in this list.
@method toArray
@return {Array} Array containing the models in this list.
@return {Model[]} Array containing the models in this list.
**/
toArray: function () {
return this._items.concat();
Expand Down
8 changes: 4 additions & 4 deletions build/model-list/model-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ Y.ModelList = Y.extend(ModelList, Y.Base, {
@param {Number} callback.index Index of the current model.
@param {ModelList} callback.list The ModelList being filtered.
@return {Array|ModelList} Array of models for which the callback function
@return {Model[]|ModelList} Array of models for which the callback function
returned a truthy value (empty if it never returned a truthy value). If
the `options.asList` option is truthy, a new ModelList instance will be
returned instead of an array.
Expand Down Expand Up @@ -451,7 +451,7 @@ Y.ModelList = Y.extend(ModelList, Y.Base, {
@method get
@param {String} name Attribute name or object property path.
@return {Any|Array} Attribute value or array of attribute values.
@return {Any|Any[]} Attribute value or array of attribute values.
@see Model.get()
**/
get: function (name) {
Expand Down Expand Up @@ -538,7 +538,7 @@ Y.ModelList = Y.extend(ModelList, Y.Base, {
@method invoke
@param {String} name Name of the method to call on each model.
@param {Any} [args*] Zero or more arguments to pass to the invoked method.
@return {Array} Array of return values, indexed according to the index of
@return {Any[]} Array of return values, indexed according to the index of
the model on which the method was called.
**/
invoke: function (name /*, args* */) {
Expand Down Expand Up @@ -891,7 +891,7 @@ Y.ModelList = Y.extend(ModelList, Y.Base, {
Returns an array containing the models in this list.
@method toArray
@return {Array} Array containing the models in this list.
@return {Model[]} Array containing the models in this list.
**/
toArray: function () {
return this._items.concat();
Expand Down
2 changes: 1 addition & 1 deletion build/model-sync-local/model-sync-local-coverage.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/model-sync-local/model-sync-local-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ LocalSync.prototype = {
* **delete**: Delete an existing model.
@param {Object} [options] Sync options
@param {callback} [callback] Called when the sync operation finishes.
@param {Function} [callback] Called when the sync operation finishes.
@param {Error|null} callback.err If an error occurred, this parameter will
contain the error. If the sync operation succeeded, _err_ will be
falsey.
Expand Down
2 changes: 1 addition & 1 deletion build/model-sync-local/model-sync-local.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ LocalSync.prototype = {
* **delete**: Delete an existing model.
@param {Object} [options] Sync options
@param {callback} [callback] Called when the sync operation finishes.
@param {Function} [callback] Called when the sync operation finishes.
@param {Error|null} callback.err If an error occurred, this parameter will
contain the error. If the sync operation succeeded, _err_ will be
falsey.
Expand Down
2 changes: 1 addition & 1 deletion build/model-sync-rest/model-sync-rest-coverage.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/model-sync-rest/model-sync-rest-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ RESTSync.prototype = {
@method _onSyncIOStart
@param {String} txId The `Y.io` transaction id.
@param {Object} details Extra details carried through from `sync()`:
@param {String} detials.action The sync action performed.
@param {String} details.action The sync action performed.
@param {Function} [details.callback] The function to call after syncing.
@param {String} details.url The URL of the requested resource.
@protected
Expand Down
2 changes: 1 addition & 1 deletion build/model-sync-rest/model-sync-rest.js
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ RESTSync.prototype = {
@method _onSyncIOStart
@param {String} txId The `Y.io` transaction id.
@param {Object} details Extra details carried through from `sync()`:
@param {String} detials.action The sync action performed.
@param {String} details.action The sync action performed.
@param {Function} [details.callback] The function to call after syncing.
@param {String} details.url The URL of the requested resource.
@protected
Expand Down
2 changes: 1 addition & 1 deletion build/model/model-coverage.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions build/model/model-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ Y.Model = Y.extend(Model, Y.Base, {
any.
@param {Boolean} [options.remove=false] If `true`, the model will be
deleted via the sync layer in addition to the instance being destroyed.
@param {callback} [callback] Called after the model has been destroyed (and
@param {Function} [callback] Called after the model has been destroyed (and
deleted via the sync layer if `options.remove` is `true`).
@param {Error|null} callback.err If an error occurred, this parameter will
contain the error. Otherwise _err_ will be `null`.
Expand Down Expand Up @@ -378,7 +378,7 @@ Y.Model = Y.extend(Model, Y.Base, {
@param {Object} [options] Options to be passed to `sync()` and to `set()`
when setting the loaded attributes. It's up to the custom sync
implementation to determine what options it supports or requires, if any.
@param {callback} [callback] Called when the sync operation finishes.
@param {Function} [callback] Called when the sync operation finishes.
@param {Error|null} callback.err If an error occurred, this parameter will
contain the error. If the sync operation succeeded, _err_ will be
`null`.
Expand Down Expand Up @@ -735,7 +735,7 @@ Y.Model = Y.extend(Model, Y.Base, {
it will simply do nothing.
@method undo
@param {Array} [attrNames] Array of specific attribute names to revert. If
@param {String[]} [attrNames] Array of specific attribute names to revert. If
not specified, all attributes modified in the last change will be
reverted.
@param {Object} [options] Data to be mixed into the event facade of the
Expand Down
6 changes: 3 additions & 3 deletions build/model/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ Y.Model = Y.extend(Model, Y.Base, {
any.
@param {Boolean} [options.remove=false] If `true`, the model will be
deleted via the sync layer in addition to the instance being destroyed.
@param {callback} [callback] Called after the model has been destroyed (and
@param {Function} [callback] Called after the model has been destroyed (and
deleted via the sync layer if `options.remove` is `true`).
@param {Error|null} callback.err If an error occurred, this parameter will
contain the error. Otherwise _err_ will be `null`.
Expand Down Expand Up @@ -378,7 +378,7 @@ Y.Model = Y.extend(Model, Y.Base, {
@param {Object} [options] Options to be passed to `sync()` and to `set()`
when setting the loaded attributes. It's up to the custom sync
implementation to determine what options it supports or requires, if any.
@param {callback} [callback] Called when the sync operation finishes.
@param {Function} [callback] Called when the sync operation finishes.
@param {Error|null} callback.err If an error occurred, this parameter will
contain the error. If the sync operation succeeded, _err_ will be
`null`.
Expand Down Expand Up @@ -735,7 +735,7 @@ Y.Model = Y.extend(Model, Y.Base, {
it will simply do nothing.
@method undo
@param {Array} [attrNames] Array of specific attribute names to revert. If
@param {String[]} [attrNames] Array of specific attribute names to revert. If
not specified, all attributes modified in the last change will be
reverted.
@param {Object} [options] Data to be mixed into the event facade of the
Expand Down

0 comments on commit 33a9646

Please sign in to comment.