1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 07:50:23 +01:00
Conflicts:
	templates/index.html
This commit is contained in:
czaks 2013-06-15 00:08:11 -04:00
commit b0a555365c
2 changed files with 9 additions and 2 deletions

View File

@ -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();

View File

@ -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>