aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-07-22 19:07:19 +0000
committerMario <mario@mariovavti.com>2024-07-22 19:07:19 +0000
commit4e35d342269be73a6d6561b8f7587b5edbb50346 (patch)
treef144ecdae8aefebc0e82b43c7d37b6ac82c536a5 /view/js
parent3708896a658bb7ae8f61377bc85da0bc898a721e (diff)
downloadvolse-hubzilla-4e35d342269be73a6d6561b8f7587b5edbb50346.tar.gz
volse-hubzilla-4e35d342269be73a6d6561b8f7587b5edbb50346.tar.bz2
volse-hubzilla-4e35d342269be73a6d6561b8f7587b5edbb50346.zip
item buttons redesign - initial checkin
Diffstat (limited to 'view/js')
-rw-r--r--view/js/main.js23
1 files changed, 11 insertions, 12 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 2ad7b86fb..782ce4b62 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -256,19 +256,18 @@ function getConversationSettings() {
}
function postConversationSettings() {
- $.post(
- 'settings/conversation',
- $('#settings_module_ajax_form').serialize() + "&auto_update=" + next_page
- );
-
if(next_page === 1) {
page_load = true;
}
- $('#conversation_settings').modal('hide');
-
- if(timer) clearTimeout(timer);
- timer = setTimeout(updateInit,100);
+ $.post(
+ 'settings/conversation',
+ $('#settings_module_ajax_form').serialize() + "&auto_update=" + next_page
+ ).done(function() {
+ $('#conversation_settings').modal('hide');
+ toast('Conversation features updated', 'info');
+ updateInit();
+ });
return false;
}
@@ -1305,7 +1304,7 @@ function dropItem(url, object, b64mid) {
$(object + ', #pinned-wrapper-' + id).remove();
$('body').css('cursor', 'auto');
- toast(aStr.itemdel, 'info')
+ toast(aStr.itemdel, 'info');
//$.jGrowl(aStr.itemdel, { sticky: false, theme: 'info', life: 3000 });
if (typeof b64mid !== typeof undefined) {
@@ -1361,8 +1360,8 @@ function dostar(ident) {
$('#starred-' + ident).removeClass('fa-star-o');
$('#star-' + ident).addClass('hidden');
$('#unstar-' + ident).removeClass('hidden');
- var btn_tpl = '<div class="btn-group" id="star-button-' + ident + '"><button type="button" class="btn btn-outline-secondary border-0 btn-sm wall-item-star" onclick="dostar(' + ident + ');"><i class="fa fa-star"></i></button></div>'
- $('#wall-item-tools-left-' + ident).prepend(btn_tpl);
+ var btn_tpl = '<div class="" id="star-button-' + ident + '"><button type="button" class="btn btn-outline-secondary border-0 wall-item-star" onclick="dostar(' + ident + ');"><i class="fa fa-star"></i></button></div>'
+ $('#wall-item-tools-right-' + ident).prepend(btn_tpl);
}
else {
$('#starred-' + ident).addClass('unstarred');