Created
May 4, 2015 22:00
-
-
Save superchris/c3db8335d15a70c77654 to your computer and use it in GitHub Desktop.
JS Bin Directive scope example // source http://jsbin.com/yaqas
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="Directive scope 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="HelloCtrl as ctrl"> | |
<hello-there from="ctrl.me" to="World" action="ctrl.changeMe()"></hello-there> | |
<script id="jsbin-javascript"> | |
var app = angular.module("app", []); | |
app.controller("HelloCtrl", function() { | |
this.me = "Chris"; | |
this.changeMe = function() { | |
this.me = "Someone else"; | |
} | |
}); | |
app.directive("helloThere", function(){ | |
return { | |
scope: { | |
to: "@", | |
from: "=", | |
action: "&", | |
}, | |
restrict: "E", | |
template: "<div ng-click='action()'>Hello {{to}} from {{from}}</div>" | |
}; | |
}); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var app = angular.module("app", []); | |
app.controller("HelloCtrl", function() { | |
this.me = "Chris"; | |
this.changeMe = function() { | |
this.me = "Someone else"; | |
} | |
}); | |
app.directive("helloThere", function(){ | |
return { | |
scope: { | |
to: "@", | |
from: "=", | |
action: "&", | |
}, | |
restrict: "E", | |
template: "<div ng-click='action()'>Hello {{to}} from {{from}}</div>" | |
}; | |
});</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
var app = angular.module("app", []); | |
app.controller("HelloCtrl", function() { | |
this.me = "Chris"; | |
this.changeMe = function() { | |
this.me = "Someone else"; | |
} | |
}); | |
app.directive("helloThere", function(){ | |
return { | |
scope: { | |
to: "@", | |
from: "=", | |
action: "&", | |
}, | |
restrict: "E", | |
template: "<div ng-click='action()'>Hello {{to}} from {{from}}</div>" | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment