aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-11-04 15:16:52 +0000
committerMario <mario@mariovavti.com>2020-11-04 15:16:52 +0000
commit20d2811cd5d0e2f518169a7625c8df3734f7137c (patch)
tree9e6fe1ac4fbc73b6833fccfb5384f6688afa8594 /view
parentb4ca5c133cdc0f4934eb6d348dcc423a5ff4fe02 (diff)
parent207df132e69bd3e70f28addbd63bd3c638da9b08 (diff)
downloadvolse-hubzilla-20d2811cd5d0e2f518169a7625c8df3734f7137c.tar.gz
volse-hubzilla-20d2811cd5d0e2f518169a7625c8df3734f7137c.tar.bz2
volse-hubzilla-20d2811cd5d0e2f518169a7625c8df3734f7137c.zip
Merge branch 'dev' into 5.0RC
Diffstat (limited to 'view')
-rw-r--r--view/js/main.js4
-rwxr-xr-xview/tpl/connections.tpl2
2 files changed, 4 insertions, 2 deletions
diff --git a/view/js/main.js b/view/js/main.js
index fb7bcb52f..8ceb0b143 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -1868,7 +1868,9 @@ function sse_handleNotifications(obj, replace, followup) {
}
else {
$('.' + type + '-update').html('0');
- $('.' + type + '-button').fadeOut();
+ $('.' + type + '-button').fadeOut(function() {
+ sse_setNotificationsStatus();
+ });
}
if(obj[type].notifications.length)
sse_handleNotificationsItems(type, obj[type].notifications, replace, followup);
diff --git a/view/tpl/connections.tpl b/view/tpl/connections.tpl
index 021c33146..fedcff1e3 100755
--- a/view/tpl/connections.tpl
+++ b/view/tpl/connections.tpl
@@ -20,7 +20,7 @@
<div class="input-group form-group">
<input type="text" name="search" id="contacts-search" class="form-control" onfocus="this.select();" value="{{$search}}" placeholder="{{$desc}}" />
<div class="input-group-append">
- <button id="contacts-search-submit" class="btn btn-outline-secondary" type="submit"><i class="fa fa-fw fa-search"></i></button>
+ <button id="contacts-search-submit" class="btn btn-sm btn-outline-secondary" type="submit"><i class="fa fa-fw fa-search"></i></button>
</div>
</div>
</form>