Created
May 4, 2015 22:01
-
-
Save superchris/3ab974bbe112b3d418be to your computer and use it in GitHub Desktop.
JS Bin controller directive example // source http://jsbin.com/miqoso
This file contains 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 directive 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> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-sanitize.js"></script> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body ng-controller="main"> | |
<div adder addend1="2" addend2="5"></div> | |
<script id="jsbin-javascript"> | |
var app = angular.module("app", ["ngSanitize"]); | |
app.controller("main", function($scope) { | |
$scope.text = "small things"; | |
$scope.alertHi = function() { alert("hi!"); }; | |
}); | |
app.controller("adderCtrl", function($scope) { | |
$scope.add = function() { | |
$scope.sum = Number($scope.addend1) + Number($scope.addend2); | |
} | |
}); | |
app.directive("adder", function(){ | |
return { | |
restrict: "EA", | |
template: "<div ng-click='add()'>Sum is: {{sum}}</div>", | |
replace: true, | |
scope: { | |
addend1: "@", | |
addend2: "@" | |
}, | |
controller: "adderCtrl" | |
}; | |
}); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var app = angular.module("app", ["ngSanitize"]); | |
app.controller("main", function($scope) { | |
$scope.text = "small things"; | |
$scope.alertHi = function() { alert("hi!"); }; | |
}); | |
app.controller("adderCtrl", function($scope) { | |
$scope.add = function() { | |
$scope.sum = Number($scope.addend1) + Number($scope.addend2); | |
} | |
}); | |
app.directive("adder", function(){ | |
return { | |
restrict: "EA", | |
template: "<div ng-click='add()'>Sum is: {{sum}}</div>", | |
replace: true, | |
scope: { | |
addend1: "@", | |
addend2: "@" | |
}, | |
controller: "adderCtrl" | |
}; | |
});</script></body> | |
</html> |
This file contains 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
var app = angular.module("app", ["ngSanitize"]); | |
app.controller("main", function($scope) { | |
$scope.text = "small things"; | |
$scope.alertHi = function() { alert("hi!"); }; | |
}); | |
app.controller("adderCtrl", function($scope) { | |
$scope.add = function() { | |
$scope.sum = Number($scope.addend1) + Number($scope.addend2); | |
} | |
}); | |
app.directive("adder", function(){ | |
return { | |
restrict: "EA", | |
template: "<div ng-click='add()'>Sum is: {{sum}}</div>", | |
replace: true, | |
scope: { | |
addend1: "@", | |
addend2: "@" | |
}, | |
controller: "adderCtrl" | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment