Skip to content

Releases: JonnyBGod/ngx-scrollspy

v0.3.4

05 Jan 00:12
Compare
Choose a tag to compare

<a name"0.3.4">

0.3.4 (2017-01-05)

Bug Fixes

v0.3.3

05 Jan 00:02
Compare
Choose a tag to compare

<a name"0.3.3">

0.3.3 (2017-01-05)

Bug Fixes

  • element.directive: public scrollSpyId (46b7e005)

v0.3.2

29 Nov 02:13
Compare
Choose a tag to compare

<a name"0.3.2">

0.3.2 (2016-11-29)

Bug Fixes

  • plugin/index: HACK to goto anchor when menu clicked (c7295b9)

v0.3.1

29 Nov 00:17
Compare
Choose a tag to compare

<a name"0.3.1">

0.3.1 (2016-11-29)

Features

Bug Fixes

  • build: add plugins to build process (0167745d)

Breaking Changes

New declaration system.

Main Module:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { ScrollSpyModule } from 'ng2-scrollspy';

@NgModule({
  imports: [
    BrowserModule,
    ScrollSpyModule.forRoot()
  ],
  declarations: [ AppComponent ], 
  bootstrap: [ AppComponent ]
})

Using Plugins:

import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { CommonModule }  from '@angular/common';

import {
    ScrollSpyIndexDirective,
    ScrollSpyIndexRenderComponent
} from 'ng2-scrollspy/dist/plugin/index';
import { ScrollSpyAffixDirective } from 'ng2-scrollspy/dist/plugin/affix';

import { IndexLegalComponent } from './my.component';

export const routes = [
  { path: '', component: MyComponent, pathMatch: 'full' }
];

@NgModule({
  imports: [
    CommonModule,
    RouterModule.forChild(routes)
  ],
  declarations: [
    MyComponent,
    ScrollSpyIndexDirective,
    ScrollSpyIndexRenderComponent,
    ScrollSpyAffixDirective
  ]
})
export default class MyModule { }

v0.3.0 BROKEN RELEASE

26 Nov 19:28
Compare
Choose a tag to compare
v0.3.0 BROKEN RELEASE Pre-release
Pre-release

<a name"0.3.0">

0.3.0 (2016-11-26)

v0.2.15

15 Sep 18:20
Compare
Choose a tag to compare

<a name"0.2.15">

0.2.15 (2016-09-15)

Bug Fixes

v0.2.14

21 Jun 03:24
Compare
Choose a tag to compare

<a name"0.2.14">

0.2.14 (2016-06-21)

Bug Fixes

  • dependencies: update to angular rc2 (56e33e69)

v0.2.13

10 Jun 18:12
Compare
Choose a tag to compare

<a name"0.2.13">

0.2.13 (2016-06-10)

Bug Fixes

  • affix.directive: trigger change detection when needed (877ae469)

v0.2.12

10 Jun 18:05
Compare
Choose a tag to compare

<a name"0.2.12">

0.2.12 (2016-06-10)

Bug Fixes

  • affix.directive: use settimeout instead of delay (458156a0)

v0.2.11

10 Jun 17:20
Compare
Choose a tag to compare

<a name"0.2.11">

0.2.11 (2016-06-10)

Bug Fixes