-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmyApp.js
More file actions
32 lines (26 loc) · 730 Bytes
/
Copy pathmyApp.js
File metadata and controls
32 lines (26 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
templateUrl : "main.html"
})
.when("/home", {
templateUrl : "main.html"
})
.when("/getUniqueList", {
templateUrl : "getUniqueList.html",
controller : "getUniqueListController"
})
.when("/operationsRut", {
templateUrl : "operationsRut.html",
controller : "operationsRutController"
})
.when("/toOneLineString", {
templateUrl : "toOneLineString.html",
controller : "toOneLineStringController"
})
.when("/toSQLIn", {
templateUrl : "toSQLIn.html",
controller : "toSQLInController"
});
});