5 lines
158 B
JavaScript
5 lines
158 B
JavaScript
var aboutCtrl = angular.module('aboutCtrl', []);
|
|
|
|
aboutCtrl.controller('AboutCtrl', ['$scope', function($scope) {
|
|
$scope.about = "this is about YLT";
|
|
}]); |