Created
April 20, 2015 14:02
-
-
Save burnsra/5aa4bade6574f13093fd to your computer and use it in GitHub Desktop.
JS Bin Controller example // source http://jsbin.com/dekola
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
<!DOCTYPE html> | |
<html ng-app="app"> | |
<head> | |
<meta name="description" content="Controller example" /> | |
<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 ng-controller="GreeterCtrl as greeter"> | |
{{ greeter.greetee }} | |
<div ng-controller="GreeterCtrlOlder"> | |
{{ greetee }} | |
</div> | |
<script id="jsbin-javascript"> | |
app = angular.module("app", []); | |
app.controller("GreeterCtrl", function() { | |
this.greetee = "Hi There CampNG!"; | |
}); | |
app.controller("GreeterCtrlOlder", function($scope) { | |
$scope.greetee = "Hi There Older CampNG!"; | |
}); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">app = angular.module("app", []); | |
app.controller("GreeterCtrl", function() { | |
this.greetee = "Hi There CampNG!"; | |
}); | |
app.controller("GreeterCtrlOlder", function($scope) { | |
$scope.greetee = "Hi There Older CampNG!"; | |
}); | |
</script></body> | |
</html> |
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
app = angular.module("app", []); | |
app.controller("GreeterCtrl", function() { | |
this.greetee = "Hi There CampNG!"; | |
}); | |
app.controller("GreeterCtrlOlder", function($scope) { | |
$scope.greetee = "Hi There Older CampNG!"; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment