Skip to content

Commit

Permalink
Updated README.md (#92)
Browse files Browse the repository at this point in the history
* Updated README.md

readyCallback() is called once the data has been retrieved from the server. This is quite important as we might need to trigger method when the data is ready.

* Update README.md
  • Loading branch information
tahnik authored and posva committed Apr 26, 2017
1 parent c9c91c2 commit fc3e986
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ var vm = new Vue({
// optionally bind as an object
asObject: true,
// optionally provide the cancelCallback
cancelCallback: function () {}
cancelCallback: function () {},
// this is called once the data has been retrieved from firebase
readyCallback: function () {}
}
}
})
Expand Down

0 comments on commit fc3e986

Please sign in to comment.