-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
39 lines (37 loc) · 985 Bytes
/
app.js
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
30
31
32
33
34
35
36
37
38
39
/* El ng-app="ionicApp" que agregamos al body */
angular.module('ionicApp', ['ionic'])
.config(function($stateProvider, $urlRouterProvider) {
/* Menu por defecto */
$stateProvider
.state('eventmenu', {
url: "/event",
abstract: true,
templateUrl: "templates/event-menu.html"
})
/* Este es el link de inicio */
.state('eventmenu.home', {
url: "/home",
views: {
'menuContent' :{
templateUrl: "templates/home.html"
}
}
})
/* Este es el link de texto */
.state('eventmenu.Texto', {
url: "/Texto",
views: {
'menuContent' :{
templateUrl: "templates/Texto.html"
}
}
})
/* Si hay una ruta no agregada dirigira a home*/
$urlRouterProvider.otherwise("/event/home");
})
/* Con esto se abre el menu */
.controller('MainCtrl', function($scope, $ionicSideMenuDelegate) {
$scope.toggleLeft = function() {
$ionicSideMenuDelegate.toggleLeft();
};
})