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
#/etc/default/php-fastcgi | |
PHP5=/usr/bin/php5-cgi | |
FASTCGI_USER=www-data | |
FASTCGI_GROUP=www-data | |
ADDRESS=127.0.0.1 | |
PORT=9000 |
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
angular.module('module-name') | |
.config(function($stateProvider) { | |
$stateProvider | |
.state('base.location',{ | |
url: '/location', | |
templateUrl: 'client/location/location.ng.html', | |
// This is supposed to update page title when state changes(works in angularjs but doesnt work in angular-meteor) | |
data: { | |
'pageTitle': 'Locations' |