Skip to content

Instantly share code, notes, and snippets.

@jeffersonsouza
Created June 18, 2015 19:08
Show Gist options
  • Select an option

  • Save jeffersonsouza/d3c09a24ea7fcb74b740 to your computer and use it in GitHub Desktop.

Select an option

Save jeffersonsouza/d3c09a24ea7fcb74b740 to your computer and use it in GitHub Desktop.
Angular Constants
// app.js
'use strict';
angular.module('myApp',['ionic'])
.constant("config", {
"apiUrl": "http://localhost:3000"
});
// seuController.js
angular.module('myApp')
.controller('MyController', ['$scope', 'config', $scope, config
console.log(config.apiUrl);
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment