-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter.js
45 lines (37 loc) · 1.1 KB
/
router.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
$(function(){
App.Router = new (Backbone.Router.extend({
routes:{
'': 'hacksRoute',
'hacks': 'hacksRoute',
'meet-ups': 'meetUpsRoute',
'tool/:toolId': 'tool'
},
tool: function(toolId) {
var tpl = _.template(jQuery('#template-tool-42').html())
$('#main-region').html(tpl())
},
hacksRoute: function() {
var tpl = _.template(jQuery('#template-hacks').html())
jQuery('#main-region').html(tpl())
jQuery('.search-form').one('click', function() {
jQuery('.search-form .advanced') .css('opacity', 0)
.slideDown('slow')
.animate(
{ opacity: 1 },
{ queue: false, duration: 'slow' }
);
})
jQuery('.see-more').one('click', function() {
jQuery('.page2') .css('opacity', 0)
.slideDown('slow')
.animate(
{ opacity: 1 },
{ queue: false, duration: 'slow' }
);
})
},
meetUpsRoute: function() {
jQuery('#main-region').html('meet ups')
}
}))
})($)