forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.js
More file actions
65 lines (47 loc) · 952 Bytes
/
Copy pathinit.js
File metadata and controls
65 lines (47 loc) · 952 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
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
// log version
console.log("nightTab version", version.get());
// check for old versions
data.init();
// bind and update controls
// render states
state.init();
// restore bookmarks
bookmarks.init();
// close menu if left open
// bind menu tabs
menu.init();
// render css accent var
accent.init();
// render links from bookmarks
link.init();
// bind controls
// render checkboxes and radios
// render states
control.init();
// render greeting
// bind greeting update
greeting.init();
// render transitional
transitional.init();
// render date
// bind date update
date.init();
// render clock
// bind clock update
clock.init();
// bind keyboard keys
keyboard.init();
// bind tips
tip.init();
// render page title
layout.init();
// render background image
background.init();
// bind search box
// render search engine
// focus seach input
search.init();
// render page title
title.init();
// render header height padding
header.init();