Closed jbonigomes closed 10 years ago
You can create a ref with this lib and pass it into AngularFire the same way you would pass a Firebase ref. This lib will be getting a refresh in the near future to address some of the bugs with limit that users have encountered, but it's otherwise perfectly compatible.
Got it, thanks Kato, also, is there a way to inject the lib in my Angular app, at the moment I am importing it globally, not sure if this is the right way.
$window.Firebase.util should work fine with jslint, test units, et al.
Thanks Kato, great work with Firebase, love your blogs. Closing this issue.
Also, it looks like we already inject Firebase, so you could utilize it like this as well:
app.factory('foo', function(Firebase) {
Firebase.util;
});
ah, even better, thanks for that
What is the right way to integrate this lib with Angular.js and AngularFire?