mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-12 01:50:48 +01:00
Create hide-form.js
This commit is contained in:
parent
e912ee24ec
commit
eaf7c83e15
23
js/hide-form.js
Normal file
23
js/hide-form.js
Normal file
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Adds 4chan-like [Start a New Thread] and [Post a Reply] buttons to pages.
|
||||
*
|
||||
* Usage:
|
||||
* $config['additional_javascript'][] = 'js/jquery.min.js';
|
||||
* $config['additional_javascript'][] = 'js/hide-form.js';
|
||||
*
|
||||
*/
|
||||
|
||||
$(document).ready(() => {
|
||||
if (active_page !== 'index' && active_page !== 'thread')
|
||||
return;
|
||||
|
||||
let form_el = $('form[name="post"]');
|
||||
let form_msg = active_page === 'index' ? 'Start a New Thread' : 'Post a Reply';
|
||||
|
||||
form_el.hide();
|
||||
form_el.after(`<div id="show-post-form" style="font-size:175%;text-align:center;font-weight:bold">[<a href="#" style="text-decoration:none">${_(form_msg)}</a>]</div>`);
|
||||
$('div#show-post-form').click(() => {
|
||||
$('div#show-post-form').hide();
|
||||
form_el.show();
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user