Skip to content

Instantly share code, notes, and snippets.

@superchris
Created May 4, 2015 21:48
Show Gist options
  • Select an option

  • Save superchris/f7abcf90c9461336be20 to your computer and use it in GitHub Desktop.

Select an option

Save superchris/f7abcf90c9461336be20 to your computer and use it in GitHub Desktop.
JS Bin Fun with scopes // source http://jsbin.com/kucusa
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta name="description" content="Fun with scopes" />
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<div ng-controller="ParentCtrl">
{{foo}}
<div ng-controller="ChildCtrl">
{{foo}}
<input ng-model="foo" />
</div>
</div>
<script id="jsbin-javascript">
var app = angular.module("app", []);
app.controller("ParentCtrl", function ($scope) {
$scope.foo = "bar";
});
app.controller("ChildCtrl", function ($scope) {
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">var app = angular.module("app", []);
app.controller("ParentCtrl", function ($scope) {
$scope.foo = "bar";
});
app.controller("ChildCtrl", function ($scope) {
});</script></body>
</html>
var app = angular.module("app", []);
app.controller("ParentCtrl", function ($scope) {
$scope.foo = "bar";
});
app.controller("ChildCtrl", function ($scope) {
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment