From c6a36bdbb7955066be30ccb798322eb6ac56b36c Mon Sep 17 00:00:00 2001 From: Tahnik Mustasin Date: Tue, 25 Apr 2017 23:46:10 +0100 Subject: [PATCH 1/2] 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. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index aa289178..ec622238 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,8 @@ var vm = new Vue({ asObject: true, // optionally provide the cancelCallback cancelCallback: function () {} + // this is called once the data has been retrieved from firebase + readyCallback: function () {} } } }) From cc6bf5eb654a2c1e0431dfe94ecb8735189123ec Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Wed, 26 Apr 2017 10:35:52 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec622238..04774dcc 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ 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 () {} }