최근 검색
최근 검색 없음

Josh Keller
가입한 날짜: 2021년 4월 16일
·
마지막 활동: 2024년 10월 25일
팔로잉
0
팔로워
1
총 활동 수
32
투표 수
8
플랜 수
14
활동 개요
배지
문서
게시물
커뮤니티 댓글
문서 댓글
활동 개요
님의 최근 활동 Josh Keller
Josh Keller님이 에 댓글을 입력함
Pleeeeeease tell us that the API for merging organizations is coming soon. This isn't very useful for large Zendesk customers until we can do this via API.
댓글 보기 · 2023년 11월 06일에 게시됨 · Josh Keller
0
팔로워
1
투표
0
댓글
Josh Keller님이 에 댓글을 입력함
Thank you, Lisa Setford. Sadly we already have Personalized email replies disabled. We just opened a ticket with Zendesk about this--hopefully they can help us get this sorted. Thanks again, though!
댓글 보기 · 2023년 9월 06일에 게시됨 · Josh Keller
0
팔로워
1
투표
0
댓글
Josh Keller님이 에 댓글을 입력함
So much agreement here. This is a security issue. We're also seeing agent's full names exposed, though it's not consistent.
댓글 보기 · 2023년 9월 06일에 게시됨 · Josh Keller
0
팔로워
0
투표 수
0
댓글
Josh Keller님이 에 댓글을 입력함
I've found the following to manage app sizing pretty well:
function resize_app() {
let el = document.getElementsByTagName('body')[0];
let height = el.offsetHeight;
let style = getComputedStyle(el);
height += parseInt(style.marginTop) + parseInt(style.marginBottom) + 10;
client.invoke('resize', { width: '100%', height: height });
}
function debounce(func, timeout=250) {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => { func.apply(this, args); }, timeout);
};
}
window.addEventListener('load', debounce(resize_app));
window.addEventListener('resize', debounce(resize_app));
The 250ms debounce delay might be excessive, but it's helpful since we have so many apps competing against each other for resources.
I found the additional 10 (pixels) added to the height was necessary, though I don't really understand why since I think the full height should be accounted for by parsing the body element.
댓글 보기 · 2022년 1월 27일에 편집됨 · Josh Keller
0
팔로워
0
투표 수
0
댓글
Josh Keller님이 에 댓글을 입력함
The "Ticket skills" attribute seems to return all skills that were ever applied to the ticket. How can we get only the currently-applied ticket skills?
댓글 보기 · 2021년 3월 16일에 게시됨 · Josh Keller
0
팔로워
4
투표 수
0
댓글
Josh Keller님이 에 댓글을 입력함
Seems this is a known issue :(
https://support.zendesk.com/hc/en-us/articles/115007946367-HTML-and-Markdown-used-in-dynamic-content-does-not-render-in-trigger-emails-or-agent-signatures
댓글 보기 · 2020년 10월 15일에 게시됨 · Josh Keller
0
팔로워
2
투표 수
0
댓글