-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.js
65 lines (49 loc) · 1.08 KB
/
routes.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
$(function () {
laodComp("header",{js:false}) // js=false
//laodComp("main",{js:false})
laodComp("footer",{js:false})
})
microroute.callbacks.push((ctx,nx)=>{
// console.log("_____meed",{ctx})
const name = ctx.path.split("/").reverse()[0]
if (document.getElementById(`nav2_${name}`) )
document.getElementById(`nav2_${name}`).checked=1
nx();
})
microroute("/Entrar",()=>{
console.log("Entrando")
popUp("entrar");
})
microroute("/Inscrever",()=>{
console.log("Increver")
popUp("cadastrar");
})
microroute("/Fotos_e_Fatos",()=>{
laodPage("pagina2",{js:false})
})
microroute("/Quiz",()=>{
laodPage("quiz")
})
microroute("/teste_game",()=>{
laodPage("game",{js:false})
})
microroute("/Palavras_Cruzadas",()=>{
laodPage("cpalavra",{js:false})
})
microroute("/Duvidas",()=>{
laodPage("duvidas",{js:false})
})
microroute("/",()=>{
laodPage("pagina1",{js:false})
})
/**************************/
microroute("/",()=>{
laodPage("pagina1",{js:false})
})
microroute("*",()=>{
laodPage("erro404",{js:false})
})
// {
// base:"//djedu28.github.io/trilhas_desafio_final",
// base:""
// }