angular-class-extender icon indicating copy to clipboard operation
angular-class-extender copied to clipboard

How extend my controller with this syntax ?

Open bbeyssac opened this issue 11 years ago • 0 comments

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

bbeyssac avatar Dec 23 '14 14:12 bbeyssac