angular1 scaffold
by leozcx
HTML
<div ng-controller='test'>
{{msg}}
</div>
JavaScript
(function() {
angular.module('demo', []).controller('test', function($scope) {
$scope.msg = 'a';
})
})();
by leozcx
<div ng-controller='test'>
{{msg}}
</div>
(function() {
angular.module('demo', []).controller('test', function($scope) {
$scope.msg = 'a';
})
})();