angular-class-extender
angular-class-extender copied to clipboard
A lightweight angular module that adds support for multiple class inheritance and method abstraction.
Results
1
angular-class-extender issues
Sort by
recently updated
recently updated
newest added
Hi I use this syntax below to declare my controller : myApp.controller('ParentController', [ '$scope', function($scope, ) { ... } How extend my controller with this syntax ? myApp.controller('ChildController', [ '$scope',...