rev087/ng-inspector

"Controller-As" syntax has different results from older syntax

Open

#130 opened on Aug 11, 2015

View on GitHub
 (0 comments) (0 reactions) (0 assignees)JavaScript (100 forks)batch import
bughelp wanted

Repository metrics

Stars
 (787 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

Older Syntax:

angular.module('TestApp', [])
.controller('SampleCtrl', function($scope) {
    $scope.username = 'John Doe';
});

Result: Imgur


"Controller-As" syntax:

angular.module('TestApp', [])
.controller('SampleCtrl', function() {
    this.username = 'John Doe';
});

Result: Imgur

Contributor guide