GithubHelp home page GithubHelp logo

angular-2-holderjs's People

Contributors

aogriffiths avatar

Stargazers

 avatar

Watchers

 avatar  avatar

angular-2-holderjs's Issues

binding to variable

Hi, how do we bind the template to a variable?

 <img holderjs data-src="holder.js/200x300/auto">

works well

<img holderjs data-src="{{item.placeholder}}">

or

<img holderjs [attr.data-src]="item.placeholder">

or

<img holderjs [data-src]="item.placeholder">
// this gives an error about not being able to bind to data-src as its not a known attribute of img

does not

Guideline to Import The Directive Should be Updated

In the description (point 3, import the directive), it is mentioned that in order to import the directive, the respective component should import it like this:

import { HolderjsDirective } from 'angular-2-holderjs/holderjs.directive';

@component({
selector: 'your-component',
templateUrl: 'your.component.html',
directives: [HolderjsDirective, ...],
})

export class YourComponent {

}

It doesn't work in Angular 4. The directive should be imported in NgModule in declarations:

..

import { HolderjsDirective } from 'angular-2-holderjs/holderjs.directive';
@NgModule({
declarations: [
...,
HolderjsDirective
],
...
})

Otherwise, ng build --prod cannot be performed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.