mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-25 07:50:23 +01:00
Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts: templates/index.html
This commit is contained in:
commit
b0a555365c
@ -17,7 +17,7 @@ $(document).ready(function(){
|
||||
return; // not index
|
||||
|
||||
txt_new_topic = $('form[name=post] input[type=submit]').val();
|
||||
txt_new_reply = txt_new_topic == 'Submit' ? txt_new_topic : 'New Reply';
|
||||
txt_new_reply = txt_new_topic == 'Submit' ? txt_new_topic : new_reply_string;
|
||||
|
||||
undo_quick_reply = function() {
|
||||
$('div.banner').remove();
|
||||
|
@ -1,8 +1,15 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
{% include 'header.html' %}
|
||||
<meta charset="utf-8">
|
||||
|
||||
{% if config.quick_reply %}
|
||||
<script type="text/javascript">
|
||||
var new_reply_string = "{{ config.button_reply }}";
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
{% include 'header.html' %}
|
||||
<title>{{ board.url }} - {{ board.name }}</title>
|
||||
</head>
|
||||
<body>
|
||||
|
Loading…
Reference in New Issue
Block a user