Skip to content

Releases: 5inline/angular-component-patch

v1.0.9

19 Apr 20:49

Choose a tag to compare

Added listenEnd function to manually disabled listeners.

this.listenTo( store, 'event', func);

this.listenEnd( store, 'event', func);

v1.0.8

14 Apr 01:11

Choose a tag to compare

Changed scope destruction handling. New method: in the controller, just create an onDestroy function to be called when the $scope is destroyed.

this.onDestroy = function ()
{
// my destruction function here
}

v1.0.7

11 Apr 20:38

Choose a tag to compare

Added store emit event when the is destroyed for granular control.

Follows pattern of [eventName]:$destroyed

Example:

this.listenTo( store, 'myEvent', onMyEvent);
this.listenTo( store, 'myEvent:$destroyed', onMyEventDestroyed);

v1.0.6

27 Aug 15:04

Choose a tag to compare

Update for scope cleanup with custom directive links.

Fix for listenTo function reserved variable names.

30 Jul 04:05

Choose a tag to compare

v1.0.5

Added fix for reserved words in flux-component listenTo function.

Fix for destroying multiple events in a controller.

28 Jul 17:04

Choose a tag to compare

v1.0.4

Fixed for multiple events in a controller cleanup on destroy. Fixes p…

v1.0.3

02 Jul 02:16

Choose a tag to compare

Added check for store item on scope destroy.

Cleaner Bower Install

14 Jun 18:13

Choose a tag to compare

Cleaned up Bower installation options.

Fixes for consistent versioning

14 Jun 18:02

Choose a tag to compare

Made version consistent across files/release.

Initial Release

14 Jun 17:44

Choose a tag to compare

Initial 1.0.0 release. Tested with Angular 1.3.x and Angular 1.4.x