Mercurial > zeropaste
annotate app/assets/javascripts/init.tabs.js @ 141:2104f0c477c0
Use replaceState afterall for browsers supporting it.
Reduces history clutter.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 12 Nov 2012 17:54:59 +0700 |
parents | 13ada93ad6a2 |
children | b56ad3caed6d |
rev | line source |
---|---|
59
1833de28583a
Turns out the init file is required.
Edho Arief <edho@myconan.net>
parents:
diff
changeset
|
1 $(document).ready(function() { |
129
0785824a20b9
Return immediately if not in pastes#show.
Edho Arief <edho@myconan.net>
parents:
128
diff
changeset
|
2 if ($('#paste-show').length !== 1) { |
0785824a20b9
Return immediately if not in pastes#show.
Edho Arief <edho@myconan.net>
parents:
128
diff
changeset
|
3 return; |
0785824a20b9
Return immediately if not in pastes#show.
Edho Arief <edho@myconan.net>
parents:
128
diff
changeset
|
4 } |
136
b327d80c5ff9
Fixed indentation and spaces.
Edho Arief <edho@myconan.net>
parents:
135
diff
changeset
|
5 var update_state = function() { |
b327d80c5ff9
Fixed indentation and spaces.
Edho Arief <edho@myconan.net>
parents:
135
diff
changeset
|
6 var paste = $('#paste'), |
b327d80c5ff9
Fixed indentation and spaces.
Edho Arief <edho@myconan.net>
parents:
135
diff
changeset
|
7 mode = paste.data('mode'), |
b327d80c5ff9
Fixed indentation and spaces.
Edho Arief <edho@myconan.net>
parents:
135
diff
changeset
|
8 width = paste.data('width'), |
b327d80c5ff9
Fixed indentation and spaces.
Edho Arief <edho@myconan.net>
parents:
135
diff
changeset
|
9 qstring = '#!' + mode + '.' + width; |
137 | 10 if (width == 'auto') { |
11 qstring = '#!'; | |
12 if (mode != 'plain') { | |
13 qstring += mode; | |
134
3c777dbd6b11
Moved function declarations to beginning.
Edho Arief <edho@myconan.net>
parents:
133
diff
changeset
|
14 } |
137 | 15 } |
141
2104f0c477c0
Use replaceState afterall for browsers supporting it.
Edho Arief <edho@myconan.net>
parents:
140
diff
changeset
|
16 if (history.replaceState) { |
2104f0c477c0
Use replaceState afterall for browsers supporting it.
Edho Arief <edho@myconan.net>
parents:
140
diff
changeset
|
17 history.replaceState(null, '', qstring); |
2104f0c477c0
Use replaceState afterall for browsers supporting it.
Edho Arief <edho@myconan.net>
parents:
140
diff
changeset
|
18 } else { |
2104f0c477c0
Use replaceState afterall for browsers supporting it.
Edho Arief <edho@myconan.net>
parents:
140
diff
changeset
|
19 window.location = qstring; |
2104f0c477c0
Use replaceState afterall for browsers supporting it.
Edho Arief <edho@myconan.net>
parents:
140
diff
changeset
|
20 } |
140
13ada93ad6a2
Return false on update state.
Edho Arief <edho@myconan.net>
parents:
137
diff
changeset
|
21 return false; |
137 | 22 }, |
23 paste_resize = function(size) { | |
24 var paste = $('#paste'), | |
25 title = $('#paste-resize a.btn'); | |
26 title.html(title.html().replace(/(auto|\d+px)/, size)); | |
27 if (size == 'auto') { | |
28 paste.css('width', ''); | |
29 paste.data('width', size); | |
30 } else { | |
31 paste.css('width', size); | |
32 paste.data('width', size); | |
33 } | |
34 update_state(); | |
35 }, | |
36 paste_resize_menu_handler = function() { | |
37 paste_resize($(this).data('size')); | |
38 $('.open').removeClass('open'); | |
39 return false; | |
40 }, | |
41 paste_mode_state_handler = function() { | |
42 $('#paste').data('mode', $(this).prop('href').split('#')[1]); | |
43 update_state(); | |
44 }, | |
45 init_state = function() { | |
46 mode = window.location.hash.substr(2).split('.'); | |
47 if (mode[0] == 'highlight') { $('#paste-mode a:eq(1)').click(); } | |
48 else if (mode[0] == 'markdown') { $('#paste-mode a:eq(2)').click(); }; | |
49 if (mode[1] && mode[1].match(/^\d+px$/)) { paste_resize(mode[1]); } | |
50 }, | |
51 init_tabs_base = function() { | |
52 var raw = $('#plain pre').text(), | |
53 markdown = $('#markdown div'); | |
54 markdown.html(marked(raw)); | |
55 $('#highlight pre').text(raw); | |
135 | 56 |
137 | 57 markdown.find('pre').addClass('prettyprint'); |
58 markdown.find('a').prop('rel', 'nofollow'); | |
59 prettyPrint(); | |
60 }, | |
61 init_tabs_menu = function() { | |
62 $('#paste-mode a').click(paste_mode_state_handler); | |
63 $('#paste-resize ul a').click(paste_resize_menu_handler); | |
64 }; | |
104 | 65 |
135 | 66 init_tabs_base(); |
67 init_tabs_menu(); | |
68 init_state(); | |
69 update_state(); | |
59
1833de28583a
Turns out the init file is required.
Edho Arief <edho@myconan.net>
parents:
diff
changeset
|
70 }); |