Skip to content

Commit

Permalink
Fixes a typo of a private method (#4531)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleypriest authored and fivetanley committed Sep 16, 2016
1 parent 52a4d43 commit 1f7e2a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addon/-private/system/model/internal-model.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,14 +228,14 @@ InternalModel.prototype = {
if (this.record) {
this.record._notifyProperties(changedKeys);
}
this.didInitalizeData();
this.didInitializeData();
},

becameReady() {
Ember.run.schedule('actions', this.store.recordArrayManager, this.store.recordArrayManager.recordWasLoaded, this);
},

didInitalizeData() {
didInitializeData() {
if (!this.dataHasInitialized) {
this.becameReady();
this.dataHasInitialized = true;
Expand Down Expand Up @@ -271,7 +271,7 @@ InternalModel.prototype = {
*/
loadedData() {
this.send('loadedData');
this.didInitalizeData();
this.didInitializeData();
},

/*
Expand Down

0 comments on commit 1f7e2a2

Please sign in to comment.