Skip to content

Instantly share code, notes, and snippets.

@xilin
Created June 5, 2014 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xilin/0edad3f66a84991d0493 to your computer and use it in GitHub Desktop.
Save xilin/0edad3f66a84991d0493 to your computer and use it in GitHub Desktop.
<div phone dial="callHome(message)"></div>
app.directive("phone", function () {
return {
scope: {
dial: "&"
},
template: '<input type="text" ng-model="value">' + '<div class="button" ng-click="dial({message:value})">' + 'Call home!</div>',
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment