Skip to content

Instantly share code, notes, and snippets.

@littlehaker
Created July 7, 2014 09:12
Show Gist options
  • Select an option

  • Save littlehaker/49e30f820256287f4b6b to your computer and use it in GitHub Desktop.

Select an option

Save littlehaker/49e30f820256287f4b6b to your computer and use it in GitHub Desktop.
Extend angular controller
module.controller('CtrlImplAdvanced', ['$scope', '$controller', function ($scope, $controller) {
// Initialize the super class and extend it.
$.extend(this, $controller('CtrlImpl', {$scope: $scope}));
// … Additional extensions to create a mixin.
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment