Skip to content

Instantly share code, notes, and snippets.

@superchris
Created May 4, 2015 21:03
Show Gist options
  • Save superchris/bd141399da4025f2626a to your computer and use it in GitHub Desktop.
Save superchris/bd141399da4025f2626a to your computer and use it in GitHub Desktop.
JS Bin Click example // source http://jsbin.com/celuk/7
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta name="description" content="Click 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="CalculatorCtrl as calc">
<div>
<input ng-model="calc.addend" /> + <input ng-model="calc.addend2" /> = {{calc.sum}}
</div>
<input type="button" value="Add!" ng-click="calc.add(calc.addend,calc.addend2)" />
<script id="jsbin-javascript">
angular.module("app", []).controller("CalculatorCtrl",
function() {
this.add = function(addend1, addend2) {
this.sum = addend1 + addend2;
};
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">angular.module("app", []).controller("CalculatorCtrl",
function() {
this.add = function(addend1, addend2) {
this.sum = addend1 + addend2;
};
});</script></body>
</html>
angular.module("app", []).controller("CalculatorCtrl",
function() {
this.add = function(addend1, addend2) {
this.sum = addend1 + addend2;
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment