diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-05-19 21:21:02 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-19 21:21:02 +0200 |
commit | 244e813bfa9baa5ade89b371ec109775cdae2664 (patch) | |
tree | e22b6d2a40051e5e017a783b426eaec4ec6f8a63 /view/js/acl.js | |
parent | 0bc2a4f603a87e13d495eb7c245b85507aac6e44 (diff) | |
download | volse-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.js | 4 |
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]'); }); }; |