Skip to content

Instantly share code, notes, and snippets.

@azami
Created May 15, 2014 07:08
Show Gist options
  • Save azami/3501bfaa3f579883edd1 to your computer and use it in GitHub Desktop.
Save azami/3501bfaa3f579883edd1 to your computer and use it in GitHub Desktop.
ng-srcの値を取得したいときは、priorityを高くすると良い
app.directive('directiveName', function($location) {
return {
priority: 99,
link: function (scope, element, attrs) {
console.log(attrs);
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment