1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 16:00:22 +01:00
Commit Graph

1019 Commits

Author SHA1 Message Date
Fredrick Brennan
34627e4331 Merge pull request #34 from aeosynth/inline
[wip] inline posts
2014-10-06 19:26:10 -04:00
hugofragata
12a8f1a672 Added download-all feature
The button to download all the files in a thread only appears when the
page is a thread, such as treeview. I added the download-all button next
to the treeview one. I modified stylesheets/v8ch.css to include the id
#download-all. I modified inc/instance-config.php to include the
download-all.js and jszip.min.js. I added the files js/jszip.min.js
which is a library to work with zip files in JS and I added
js/download-all.js which goes through all files, adds them to a zip and
then gives it to the user.
2014-10-06 16:50:20 +01:00
James Campos
a1e7f171b0 optional backlink hiding 2014-10-05 17:26:50 -07:00
James Campos
6e16a963b3 add loading stub 2014-10-05 16:52:00 -07:00
James Campos
4119442877 optional 2014-10-05 16:20:25 -07:00
James Campos
68d138fa6c extract caching 2014-10-05 15:51:22 -07:00
czaks
606b39450d better synchronize the javascripts with 8chan 2014-10-05 18:30:47 +02:00
czaks
8b698e36e7 Merge https://github.com/vichan-devel/vichan
Conflicts:
	inc/mod/pages.php
	js/auto-reload.js
	js/id_colors.js
	js/id_highlighter.js
	stylesheets/style.css
	templates/index.html
2014-10-05 18:12:19 +02:00
Bui
5f521adfd5 fix hide link on images fetched with ajax 2014-10-05 17:49:31 +02:00
ScriptKi77y
7d5899d3a7 Quick fix to remove lag..
Executing a function to make a get request while simultaneously triggering a scroll event within the executed scroll event is probably not the best idea.

This still needs work, there should probably be something else used to check for updates, such as an event where page has focus or something else that doesn't get called so many times, preferably something that reduces the timer instead.

This is just a quick fix to stop all the lag on threads when scrolling near the bottom.
2014-10-05 17:49:31 +02:00
ScriptKi77y
2ece97d685 Scroll hook thread polling adjusttment.
Fixed an issue with the scroll hook thread polling.
Users scrolling near the bottom of the page are making upwards of 7-10 requests a second to the site.

Added a small timer using the "poll_interval_mindelay" value to prevent unnecessary polling, one is enough during this minimum time delay.
2014-10-05 17:49:30 +02:00
Bui
7aa2976524 wrap updater in ID span 2014-10-05 17:48:51 +02:00
topkek
c4fd370d3f Update settings.js 2014-10-05 17:48:51 +02:00
7185
b34f9c31f9 Poster ID readability
Conflicts:
	js/id_colors.js
2014-10-05 17:48:43 +02:00
Bui
6133386b82 change ID text colour on hover 2014-10-05 17:48:07 +02:00
Bui
22f4543e6f remove vertical padding on coloured IDs 2014-10-05 17:48:07 +02:00
topkek
71491bc9e9 Update auto-reload.js 2014-10-05 17:48:07 +02:00
topkek
dd99b22f06 Update settings.js 2014-10-05 17:48:07 +02:00
topkek
3918386aab Update settings.js 2014-10-05 17:48:07 +02:00
topkek
9a096f5888 Update auto-reload.js 2014-10-05 17:48:07 +02:00
8chan
8bfd5e1bcd this>el 2014-10-05 17:48:07 +02:00
8chan
f8178dcbe4 Color IDs on new posts received via AJAX 2014-10-05 17:48:07 +02:00
8chan
035f8437ab Call on ready, dont pollute window namespace with vars 2014-10-05 17:48:07 +02:00
8chan
c3ba4cc7ef Remove prototype pollution, call on ready 2014-10-05 17:48:07 +02:00
anonfagola
01ce31a516 Added id_colors.js 2014-10-05 17:46:58 +02:00
anonfagola
b419c85f8c Forgot .js extension 2014-10-05 17:46:57 +02:00
anonfagola
fda530953b Create id_highlighter 2014-10-05 17:46:10 +02:00
James Campos
53cc67ba2d better op selector, don't attach to links 2014-10-05 07:19:14 -07:00
James Campos
bbc4169eaa fix 2014-10-04 08:16:01 -07:00
James Campos
e7e057c8c8 clearfix 2014-10-04 06:48:29 -07:00
James Campos
29c887f99d remove inlined posts for new inlined posts 2014-10-03 13:41:54 -07:00
James Campos
b17a81dece fix front page backlink 2014-10-03 13:40:05 -07:00
James Campos
241eb0c6c7 rename 2014-10-03 13:32:41 -07:00
James Campos
09684c5450 front page fixes 2014-10-03 13:28:52 -07:00
James Campos
a38fa1bf75 bypass (OP) text 2014-10-03 13:08:50 -07:00
James Campos
acd66b608e fix when quote is last element 2014-10-03 13:05:45 -07:00
James Campos
c7345d12cc less invasive css fix 2014-10-03 10:03:31 -07:00
James Campos
eef2f09fb4 fix for image posts 2014-10-03 10:00:44 -07:00
James Campos
6b2733feb5 grab the whole post 2014-10-03 09:53:11 -07:00
James Campos
7f42b2e9f6 fix 2014-10-03 09:17:19 -07:00
Fredrick Brennan
4b3e33c5b0 Merge pull request #118 from topkek/master
404/Error handling for thread updater
2014-10-02 23:19:32 -04:00
Bui
b76f590a98 fix hide link on images fetched with ajax 2014-10-03 00:37:43 +09:00
ScriptKi77y
e9352a2ea8 Quick fix to remove lag..
Executing a function to make a get request while simultaneously triggering a scroll event within the executed scroll event is probably not the best idea.

This still needs work, there should probably be something else used to check for updates, such as an event where page has focus or something else that doesn't get called so many times, preferably something that reduces the timer instead. 

This is just a quick fix to stop all the lag on threads when scrolling near the bottom.
2014-09-30 01:58:23 -05:00
ScriptKi77y
0f7220fa40 Scroll hook thread polling adjusttment.
Fixed an issue with the scroll hook thread polling.
Users scrolling near the bottom of the page are making upwards of 7-10 requests a second to the site.

Added a small timer using the "poll_interval_mindelay" value to prevent unnecessary polling, one is enough during this minimum time delay.
2014-09-29 22:02:57 -05:00
Bui
156d207469 wrap updater in ID span 2014-09-29 05:18:00 +09:00
topkek
7b8cef2446 Update settings.js 2014-09-28 20:25:07 +01:00
topkek
c9942ab3db Keep trying to update if thread didn't 404 2014-09-28 20:23:30 +01:00
topkek
d4b73046b9 Error/404 handling 2014-09-28 20:00:43 +01:00
7185
bbd4cf88bc Poster ID readability 2014-09-28 05:55:10 +02:00
Fredrick Brennan
b2ab0d1e49 Merge pull request #108 from bui/master
remove vertical padding on coloured IDs
2014-09-27 21:28:21 -04:00
Bui
0e59f565c4 change ID text colour on hover 2014-09-28 09:17:30 +09:00
Bui
836e557773 remove vertical padding on coloured IDs 2014-09-28 08:58:39 +09:00
topkek
cd227d6509 Update auto-reload.js 2014-09-28 00:40:00 +01:00
topkek
ea318be4e8 Update settings.js 2014-09-28 00:27:28 +01:00
topkek
e4c68b83f5 Update settings.js 2014-09-28 00:17:16 +01:00
topkek
128adfd999 Update auto-reload.js 2014-09-28 00:16:16 +01:00
8chan
befe393778 Rewrite color IDs script so it actually works 2014-09-27 21:23:51 +00:00
8chan
150480f3fc Highlight IDs on new posts received via AJAX 2014-09-27 20:23:27 +00:00
8chan
de0328f329 this>el 2014-09-27 20:19:58 +00:00
8chan
3d73def541 Color IDs on new posts received via AJAX 2014-09-27 20:17:31 +00:00
8chan
4208c16f61 Call on ready, dont pollute window namespace with vars 2014-09-27 20:04:57 +00:00
8chan
98209fc806 Remove prototype pollution, call on ready 2014-09-27 20:04:27 +00:00
anonfagola
4086749dfe Added id_colors.js 2014-09-27 11:56:21 -07:00
anonfagola
e7c1f7d22f Forgot .js extension 2014-09-27 11:55:39 -07:00
anonfagola
677a9a8428 Create id_highlighter 2014-09-27 09:47:11 -07:00
czaks
e748a286b3 Merge branch 'master' of https://github.com/ctrlcctrlv/8chan
Conflicts:
	inc/api.php
	js/multi-image.js
2014-09-27 11:34:05 +02:00
czaks
9b466f74a6 Merge https://github.com/vichan-devel/vichan 2014-09-27 11:26:41 +02:00
czaks
f2e101f30d fix multi-image.js when quick-reply isn`t loaded 2014-09-27 11:22:28 +02:00
czaks
370c724550 Merge https://github.com/vichan-devel/vichan
Conflicts:
	js/multi-image.js
	stylesheets/style.css
2014-09-27 11:19:25 +02:00
czaks
dda7462013 catalog link not always working; fix ctrlcctrlv#88 2014-09-27 11:13:04 +02:00
8chan
6fd3b64c67 Disallow multiple Shrink all images appearing
fixes vichan-devel#91
2014-09-27 10:55:14 +02:00
8chan
56f3d89774 Fix multi image from quick reply
Conflicts:
	js/multi-image.js
2014-09-27 10:52:24 +02:00
anonfagola
d9f20c290d Updated threadscroll.js with bettter compatibility 2014-09-27 10:48:36 +02:00
Fredrick Brennan
5d6de13561 Merge pull request #95 from undido/patch-2
Fixed bug with webm's and remove images if they are clicked to be expanded
2014-09-26 23:41:11 -04:00
Fredrick Brennan
f04c4843ab Merge pull request #98 from anonfagola/patch-12
Updated threadscroll.js with bettter compatibility
2014-09-26 23:40:40 -04:00
8chan
5357db8475 Merge https://github.com/ctrlcctrlv/8chan
Conflicts:
	inc/instance-config.php
	templates/index.html
2014-09-27 00:47:47 +00:00
8chan
5e62e7a143 Disallow multiple Shrink all images appearing 2014-09-27 00:44:55 +00:00
8chan
f16f88966c Fix multi image from quick reply 2014-09-27 00:44:41 +00:00
anonfagola
992d2472c9 Updated threadscroll.js with bettter compatibility 2014-09-26 16:55:16 -07:00
undido
c599bbb4bc only append hover-toggle element to first options_tab class 2014-09-26 18:08:11 -03:00
undido
1ba6003c81 Fixed bug with webm, image-hover closes when you click an image to expand it to expand it inline 2014-09-26 17:34:34 -03:00
czaks
bb4ebebe89 Merge https://github.com/vichan-devel/vichan
Conflicts:
	js/auto-reload.js
	stylesheets/catalog.css
	stylesheets/style.css
2014-09-26 13:40:02 +02:00
Nebs
ab2a83d194 Fixes catalog href on a potential /res/ board 2014-09-26 13:10:21 +02:00
Nebs
b7592c3eec Fixed unanimating gifs in the catalog 2014-09-26 13:10:14 +02:00
czaks
ba515c5f05 post-hover.js: show a popup preview if a reply is only partially on screen; fixes ctrlcctrlv#84 2014-09-26 12:56:05 +02:00
Nebs
35e33f61d4 Fixed unanimating gifs in the catalog 2014-09-26 00:30:23 -05:00
Nebs
4c6cc59a37 Fixes catalog href on a potential /res/ board 2014-09-25 18:27:39 -05:00
8chan
4bb8eb49e8 Merge /home/service/www/http
Conflicts:
	inc/instance-config.php
	js/auto-reload.js
2014-09-25 20:55:05 +00:00
8chan
142bc60863 Merge ../http
Conflicts:
	js/auto-reload.js
2014-09-25 20:52:41 +00:00
8chan
4ecdcd292f auto reload better 2014-09-25 20:50:09 +00:00
8chan
f253d841f5 Attempt to fix undidio's unreadable indentation scheme 2014-09-25 20:44:03 +00:00
Fredrick Brennan
a4c67065f1 Merge pull request #71 from undido/patch-1
Added image-hover.js javascript
2014-09-25 16:36:52 -04:00
Lineark
0aec07c4ac Update quick-post-controls.js 2014-09-25 20:34:56 +00:00
Lineark
f9c703dc08 Update quick-post-controls.js
add global checkbox to inline report
2014-09-25 20:34:43 +00:00
undido
8e8ec225bd Handle videowidth and height the same as image height and width 2014-09-25 16:28:08 -03:00
undido
e20d79270f Added image-hover.js javascript 2014-09-25 16:20:16 -03:00
James Campos
bc054b14d0 work for backlinks 2014-09-25 10:11:33 -07:00
James Campos
4133a7b968 disable highlightReply 2014-09-25 09:58:44 -07:00
czaks
dbaeb395ac auto-reload.js: it`s actually setTimeout, not setInterval, right? 2014-09-25 06:32:53 +02:00
czaks
ed5272f17d auto-reload.js: don`t scroll up 2014-09-25 06:31:40 +02:00