angular-class-extender
angular-class-extender copied to clipboard
How extend my controller with this syntax ?
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', function($scope, ) { var $super = $extend($scope).with( ???????? ); }
best regards