diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-05-19 21:21:02 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-20 22:52:33 +0200 |
commit | ef0f195fe8fb4d7ad286709ed5c12f9b929dbbf5 (patch) | |
tree | 0a52b21242ce1971f63aeca0db022b9fa0133bae /view/js/acl.js | |
parent | 23b53cd1cea1be7ac05d0c6c9e3db6feb149fa69 (diff) | |
download | volse-hubzilla-ef0f195fe8fb4d7ad286709ed5c12f9b929dbbf5.tar.gz volse-hubzilla-ef0f195fe8fb4d7ad286709ed5c12f9b929dbbf5.tar.bz2 volse-hubzilla-ef0f195fe8fb4d7ad286709ed5c12f9b929dbbf5.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]'); }); }; |