mirror of
https://github.com/arnaucube/blockchainIDsystem.git
synced 2026-02-07 19:16:43 +01:00
15 lines
341 B
JavaScript
Executable File
15 lines
341 B
JavaScript
Executable File
'use strict';
|
|
|
|
angular.module('app.navbar', ['ngRoute'])
|
|
|
|
.config(['$routeProvider', function($routeProvider) {
|
|
$routeProvider.when('/navbar', {
|
|
templateUrl: 'views/navbar/navbar.html',
|
|
controller: 'NavbarCtrl'
|
|
});
|
|
}])
|
|
|
|
.controller('NavbarCtrl', function($scope, $http) {
|
|
|
|
});
|