Files
YellowLabTools/front/src/js/controllers/aboutCtrl.js
T

5 lines
158 B
JavaScript

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