0.0.1 • Published 8 years ago

ng-attr v0.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
8 years ago

ng-attr

<div ng-attr="{ 'attribute-name': scopeReference }"></div>

Directive for Angular 1.x for dynamic element attributes

Somewhat similar to ng-class buf to attributes.

Given:

angular
    .module('myApp')
    .component('myComponent', {
        template: '<div ng-attr="{ \'special-attribute\': $ctrl.attrValue }"></div>',
        controller: function() {
            this.attrValue = 'Hello gurls';
        }
    });

will be compiled to

<div ng-attr="{ 'attribute-name': scopeReference }" special-attribute="Hello gurls"></div>

Installation

  • npm i ng-attr --save
  • angular.module('yourModule', ['argshook.ngAttr'])