mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-16 23:16:48 +00:00
14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
'use strict';
|
|
|
|
angular.module('myApp.about', ['ngRoute'])
|
|
|
|
.config(['$routeProvider', function($routeProvider) {
|
|
$routeProvider.when('/about', {
|
|
templateUrl: '/views/about/about.html',
|
|
controller: 'AboutController'
|
|
});
|
|
}])
|
|
|
|
.controller('AboutController', [function() {
|
|
|
|
}]); |