Skip to content

Instantly share code, notes, and snippets.

@TheCodeEngine
Last active August 29, 2015 13:57
Show Gist options
  • Save TheCodeEngine/9367054 to your computer and use it in GitHub Desktop.
Save TheCodeEngine/9367054 to your computer and use it in GitHub Desktop.
Shared Data between Controller
<!doctype html>
<html ng-app="myApp">
<head>
<meta name="description" content="Shared Data between Controller" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular.js"></script>
</head>
<body>
<div id="parentCtrl" ng-controller="ParentCtrl">
{{sharedDatafff}}
</div>
</body>
</html>
angular.module('myApp', [])
.service('sharedProperties', function () {
var property = 'First';
return {
getProperty: function () {
return property;
},
setProperty: function(value) {
property = value;
}
};
})
.controller('ParentCtrl', function($scope, sharedProperties) {
$scope.sharedDatafff = sharedProperties.getProperty();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment