rev087 / ng-inspector

The AngularJS inspector pane for your browser
ng-inspector.org
MIT License
782 stars 93 forks source link

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

Open DrewML opened 9 years ago

DrewML commented 9 years ago

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