Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
Conflicts: templates/index.html
This commit is contained in:
commit
e53481f93e
@ -17,7 +17,7 @@ $(document).ready(function(){
|
|||||||
return; // not index
|
return; // not index
|
||||||
|
|
||||||
txt_new_topic = $('form[name=post] input[type=submit]').val();
|
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() {
|
undo_quick_reply = function() {
|
||||||
$('div.banner').remove();
|
$('div.banner').remove();
|
||||||
|
@ -1,8 +1,15 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
{% include 'header.html' %}
|
|
||||||
<meta charset="utf-8">
|
<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>
|
<title>{{ board.url }} - {{ board.name }}</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
Loading…
Reference in New Issue
Block a user