allow for selection of user data in admin side of support tickets

This commit is contained in:
ansuz 2019-09-30 15:41:11 +02:00
parent 2a809cf120
commit 16e8c96210

View File

@ -177,6 +177,8 @@ define([
]); ]);
$(userData).click(function () { $(userData).click(function () {
$(userData).find('pre').toggle(); $(userData).find('pre').toggle();
}).find('pre').click(function (ev) {
ev.stopPropagation();
}); });
var name = Util.fixHTML(content.sender.name) || Messages.anonymous; var name = Util.fixHTML(content.sender.name) || Messages.anonymous;