Created
May 22, 2014 22:24
-
-
Save Crash--/750d6e5c0e029ca71dc8 to your computer and use it in GitHub Desktop.
Firebase : Here we go!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var firebase = new Firebase('https://v****.firebaseio.com/exercices'); | |
firebase.on('child_added', function(newExercice) { | |
$scope.$apply(function(){ | |
updateExercices($scope.exercices, $scope.chartData, newExercice); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment