JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 69
  • Score
    100M100P100Q62659F
  • License MIT

CSS position: sticky implementation in Angular2

Package Exports

  • ng2-sticky

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ng2-sticky) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

???

???

https://github.com/1000ch/position-sticky

Install

  1. install ???

     $ npm install ???
  2. add map and packages to your systemjs.config.js

     map['???'] = 'node_modules/???';
     packages['???'] = { main: 'dist/index.js', defaultExtension: 'js']

Usage it in your code

  1. import and add directive in your component

     import { ??? } from '???';
    
     @Component({
       selector: 'my-app',
       templateUrl: './app/app.tpl.html',
       directives: [ ??? ]
     })
  2. You are ready. use it in your template

     <div ???="???">
       Loading...
     </div>