Búsquedas recientes
No hay búsquedas recientes

Josh Keller
Incorporación 16 abr 2021
·
Última actividad 25 oct 2024
Seguimientos
0
Seguidor
1
Actividad total
32
Votos
8
Suscripciones
14
RESUMEN DE LA ACTIVIDAD
INSIGNIAS
ARTÍCULOS
PUBLICACIONES
COMENTARIOS DE LA COMUNIDAD
COMENTARIOS DE ARTÍCULOS
RESUMEN DE LA ACTIVIDAD
Última actividad de Josh Keller
Josh Keller hizo un comentario,
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.
Ver comentario · Publicado 06 nov 2023 · Josh Keller
0
Seguidores
1
Voto
0
Comentarios
Josh Keller hizo un comentario,
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!
Ver comentario · Publicado 06 sept 2023 · Josh Keller
0
Seguidores
1
Voto
0
Comentarios
Josh Keller hizo un comentario,
So much agreement here. This is a security issue. We're also seeing agent's full names exposed, though it's not consistent.
Ver comentario · Publicado 06 sept 2023 · Josh Keller
0
Seguidores
0
Votos
0
Comentarios
Josh Keller hizo un comentario,
Can anyone advise if this is accessibility/WCAG-compliant?
Ver comentario · Publicado 26 abr 2023 · Josh Keller
0
Seguidores
0
Votos
0
Comentarios
Josh Keller hizo un comentario,
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.
Ver comentario · Editado 27 ene 2022 · Josh Keller
0
Seguidores
0
Votos
0
Comentarios
Josh Keller hizo un comentario,
This sounds like a fun, moderately sized project using Guide APIs. Not that it wouldn't be great for ZD to offer this capability out-of-the-box, but don't let that hold you back.
Ver comentario · Publicado 21 oct 2021 · Josh Keller
0
Seguidores
0
Votos
0
Comentarios
Josh Keller hizo un comentario,
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?
Ver comentario · Publicado 16 mar 2021 · Josh Keller
0
Seguidores
4
Votos
0
Comentarios
Josh Keller hizo un comentario,
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
Ver comentario · Publicado 15 oct 2020 · Josh Keller
0
Seguidores
2
Votos
0
Comentarios
Josh Keller hizo un comentario,
Thanks @... for this slick code. Very much appreciated!
Ver comentario · Publicado 06 ene 2020 · Josh Keller
0
Seguidores
0
Votos
0
Comentarios
Josh Keller hizo un comentario,
Thanks so much, Nicholas! Nice work and greatly appreciated.
Ver comentario · Publicado 16 sept 2019 · Josh Keller
0
Seguidores
0
Votos
0
Comentarios