Skip to content

Commit

Permalink
Merge pull request #4571 from spalger/fix/4561
Browse files Browse the repository at this point in the history
bable does not fully support subclassing Array
  • Loading branch information
colings86 committed Aug 4, 2015
2 parents 850f08f + da161a5 commit 435cea4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-compress": "^0.13.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-esvm": "^1.0.1",
"grunt-esvm": "^1.1.3",
"grunt-karma": "^0.12.0",
"grunt-replace": "^0.7.9",
"grunt-run": "spalger/grunt-run#master",
Expand Down
4 changes: 4 additions & 0 deletions src/ui/UiApps.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,8 @@ module.exports = class UiApps extends Array {
return this._byId || (this._byId = _.indexBy(this, 'id'));
}

toJSON() {
return this.slice(0);
}

};

0 comments on commit 435cea4

Please sign in to comment.