here is the function in main.js which it is pointing to.--
HomePage.prototype.loadCheckbook = function (account) {
var _this = this;
this.store.get(account).then(function (data) {
_this.register = JSON.parse(data) || [];
console.log("Updating..");
});
};