-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.js
More file actions
60 lines (47 loc) · 1.05 KB
/
main.js
File metadata and controls
60 lines (47 loc) · 1.05 KB
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
/**
* @author: Sreedhar M B
*
*/
require.config({
'paths' : {
'jquery' : 'com/ext/jquery/jquery-1.10.2',
'underscore' : 'com/ext/underscore/underscore',
'backbone' : 'com/ext/backbone/backbone',
'bootstrap' : 'com/ext/bootstrap/js/bootstrap'
},
'shim': {
'underscore' : {
exports : '_'
},
'backbone' : {
deps : ['jquery', 'underscore'],
exports : 'Backbone'
},
'bootstrap' : {
deps : ['jquery'],
exports : 'bootstrap'
}
}
});
require([
'jquery',
'underscore',
'backbone',
'bootstrap',
'js/config',
'js/router/Router'
], function($, _, Backbone, Bootstrap, APP) {
$(document).ready(function() {
var router = new APP.Router();
// router.initDefGroups();
// router.initUserGroups();
router.initContacts(function(){
Backbone.history.start();
});
$('#newContact').tooltip({title: "Click here to create a new contact", placement: "bottom"});
$('#newContact').on('show.bs.tooltip', function() {
$(this).delay(1000);
$('#newContact').tooltip('hide');
});
});
});