motd tweaks in admin panel

This commit is contained in:
Julian Lam
2013-06-03 14:51:02 -04:00
parent 0031af8d4f
commit 1aa4a440a0
3 changed files with 6 additions and 3 deletions

View File

@@ -36,7 +36,7 @@
break;
case 'checkbox':
fields[x].checked = nodebb_admin.config[key] ? true : false;
fields[x].checked = nodebb_admin.config[key] === '1' ? true : false;
break;
}
}

View File

@@ -10,9 +10,12 @@
You can enter either full HTML or Markdown text.
</p>
<textarea placeholder="Welcome to NodeBB!" data-field="motd" rows="10"></textarea>
<form class="form-inline">
<label class="checkbox" for="show_motd"><input type="checkbox" id="show_motd" data-field="show_motd" /> Show the Message of the Day</label>
</form>
</div>
<button class="btn btn-large btn-primary" id="save">Save</button>
<button class="btn btn-large btn-primary" id="save" checked>Save</button>
<script>
nodebb_admin.prepare();

View File

@@ -138,7 +138,7 @@ var express = require('express'),
break;
case 'home' :
categories.getAllCategories(function(data) {
data.motd_class = (config.show_motd || config.show_motd === undefined) ? '' : 'none';
data.motd_class = (config.show_motd === '1' || config.show_motd === undefined) ? '' : 'none';
data.motd = marked(config.motd || "# NodeBB v0.1\nWelcome to NodeBB, the discussion platform of the future.\n\n<a target=\"_blank\" href=\"http://www.nodebb.org\" class=\"btn btn-large\"><i class=\"icon-comment\"></i> Get NodeBB</a> <a target=\"_blank\" href=\"https://github.com/designcreateplay/NodeBB\" class=\"btn btn-large\"><i class=\"icon-github-alt\"></i> Fork us on Github</a> <a target=\"_blank\" href=\"https://twitter.com/dcplabs\" class=\"btn btn-large\"><i class=\"icon-twitter\"></i> @dcplabs</a>");
res.send(JSON.stringify(data));
}, uid);