Skip to content

Instantly share code, notes, and snippets.

@perrygovier
Last active August 29, 2015 14:00
Show Gist options
  • Save perrygovier/11216602 to your computer and use it in GitHub Desktop.
Save perrygovier/11216602 to your computer and use it in GitHub Desktop.
angular.module('myApp.services', [])
.factory('MyService', function() {
var myVar = true;
return {
getMyVar: function() {
return myVar;
}
setMyVar: function(val){
myVar = val;
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment