Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

docs(guide/module) fixed disabled global cntl #8248

Closed
wants to merge 1 commit into from
Closed

docs(guide/module) fixed disabled global cntl #8248

wants to merge 1 commit into from

Conversation

vandycknick
Copy link
Contributor

Example contained a global controller.

How to reproduce: https://docs.angularjs.org/guide/module

Plunker with fix: http://plnkr.co/jwu6ZBTNzOZjVqy1lLEo

@mary-poppins
Copy link

Thanks for the PR! Please check the items below to help us merge this faster. See the contributing docs for more information.

  • Uses the issue template (#8248)

If you need to make changes to your pull request, you can update the commit with git commit --amend.
Then, update the pull request with git push -f.

Thanks again for your help!

@vandycknick vandycknick changed the title docs(content/guide) fixed disabled global cntl docs(guide/module) fixed disabled global cntl Jul 17, 2014
@Narretz Narretz added this to the 1.3.0-beta.16 milestone Jul 18, 2014
@Narretz
Copy link
Contributor

Narretz commented Jul 18, 2014

Hi, thanks for the PR. However, I think it makes more sense to use the common way of registering a controller:

angular.module('xmpl').controller('XmplController', function($scope, greeter, user){
  $scope.greeting = greeter.greet(user.name);
});

Can you update the PR?

Example contained a global controller.

**How to reproduce:** https://docs.angularjs.org/guide/module

**Plunker with fix:** http://plnkr.co/jwu6ZBTNzOZjVqy1lLEo
@vandycknick
Copy link
Contributor Author

Updated PR, I actually kept in the original run block. Although i think it doesn't add much more clarity if i look back at what this part of the docs is explaining

     angular.module('xmpl', ['xmpl.service', 'xmpl.directive', 'xmpl.filter']).
        run(function(greeter, user) {
          // This is effectively part of the main method initialization code
          greeter.localize({
            salutation: 'Bonjour'
          });
          user.load('World');
        }).
        controller('XmplController', function($scope, greeter, user){
         $scope.greeting = greeter.greet(user.name);
        });

@petebacondarwin petebacondarwin self-assigned this Jul 18, 2014
@petebacondarwin
Copy link
Contributor

LGTM. Merging

petebacondarwin pushed a commit that referenced this pull request Jul 18, 2014
Global controllers have been disallowed in Angular 1.3

Closes #8248
@vandycknick vandycknick deleted the patch-2 branch July 18, 2014 10:17
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants