aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/acl.js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-05-19 21:21:02 +0200
committerMario Vavti <mario@mariovavti.com>2018-05-19 21:21:02 +0200
commit244e813bfa9baa5ade89b371ec109775cdae2664 (patch)
treee22b6d2a40051e5e017a783b426eaec4ec6f8a63 /view/js/acl.js
parent0bc2a4f603a87e13d495eb7c245b85507aac6e44 (diff)
downloadvolse-hubzilla-244e813bfa9baa5ade89b371ec109775cdae2664.tar.gz
volse-hubzilla-244e813bfa9baa5ade89b371ec109775cdae2664.tar.bz2
volse-hubzilla-244e813bfa9baa5ade89b371ec109775cdae2664.zip
fix issue where images were not visible in acl selector after using search
Diffstat (limited to 'view/js/acl.js')
-rw-r--r--view/js/acl.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/view/js/acl.js b/view/js/acl.js
index a5fae19bc..29652acb5 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -394,6 +394,10 @@ ACL.prototype.get = function(start, count, search) {
data: postdata,
dataType: 'json',
success: that.populate
+ })
+ .done(function() {
+ if(search !== undefined)
+ datasrc2src('#acl-list-content .list-group-item img[data-src]');
});
};