Releases: 5inline/angular-component-patch
Releases · 5inline/angular-component-patch
v1.0.9
19 Apr 20:49
Compare
Sorry, something went wrong.
No results found
Added listenEnd function to manually disabled listeners.
this.listenTo( store, 'event', func);
this.listenEnd( store, 'event', func);
v1.0.8
14 Apr 01:11
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
Update for scope cleanup with custom directive links.
Fix for listenTo function reserved variable names.
30 Jul 04:05
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
v1.0.4
Fixed for multiple events in a controller cleanup on destroy. Fixes p…
v1.0.3
02 Jul 02:16
Compare
Sorry, something went wrong.
No results found
Added check for store item on scope destroy.
Cleaner Bower Install
14 Jun 18:13
Compare
Sorry, something went wrong.
No results found
Cleaned up Bower installation options.
Fixes for consistent versioning
14 Jun 18:02
Compare
Sorry, something went wrong.
No results found
Made version consistent across files/release.
Initial Release
14 Jun 17:44
Compare
Sorry, something went wrong.
No results found
Initial 1.0.0 release. Tested with Angular 1.3.x and Angular 1.4.x