This commit is contained in:
Arinerron 2018-09-06 21:37:39 -07:00
parent ecefa41792
commit 516d965ad3
1 changed files with 11 additions and 7 deletions

View File

@ -81,6 +81,7 @@ function toggleSaveButton(show) {
function makePost() {
var content = document.getElementById("onionr-post-creator-content").value;
if(content.trim() !== '') {
var post = new Post();
post.setUser(getCurrentUser());
@ -92,6 +93,9 @@ function makePost() {
document.getElementById('onionr-timeline-posts').innerHTML = post.getHTML() + document.getElementById('onionr-timeline-posts').innerHTML;
document.getElementById("onionr-post-creator-content").value = "";
} else {
console.log('Not making empty post.');
}
}
$('body').on('click', '[data-editable]', function() {