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
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |
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
'use strict'; | |
// Remenber to add firebase/AngularFire scripts in you index.html | |
// FB_URL define .constant("FB_URL", "http://<firebase>.firebase.io") | |
angular.module("ItemFactory", []) | |
.factory("ItemData",function(FB_URL, $firebase, Auth){ | |
var ref = new Firebase(FB_URL); |
NewerOlder