Pesquisas recentes


Sem pesquisas recentes

Josh Keller's Avatar

Josh Keller

Entrou em 16 de abr. de 2021

·

Última atividade em 25 de out. de 2024

Zendesk Luminary

Seguindo

0

Seguidor

1

Atividade total

32

Votos

8

Assinaturas

14

VISÃO GERAL DA ATIVIDADE

Atividade mais recente por Josh Keller

Josh Keller comentou,

ComentárioEnd users and organizations

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.

Exibir comentário · Publicado 06 de nov. de 2023 · Josh Keller

0

Seguidores

1

Votos

0

Comentários


Josh Keller comentou,

ComentárioGeneral questions about email and email template

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!

Exibir comentário · Publicado 06 de set. de 2023 · Josh Keller

0

Seguidores

1

Votos

0

Comentários


Josh Keller comentou,

ComentárioGeneral questions about email and email template

So much agreement here. This is a security issue. We're also seeing agent's full names exposed, though it's not consistent.

Exibir comentário · Publicado 06 de set. de 2023 · Josh Keller

0

Seguidores

0

Votos

0

Comentários


Josh Keller comentou,

Comentário na comunidade Discussion - Tips and best practices from the community

Can anyone advise if this is accessibility/WCAG-compliant?

Exibir comentário · Publicado 26 de abr. de 2023 · Josh Keller

0

Seguidores

0

Votos

0

Comentários


Josh Keller comentou,

ComentárioDeveloper updates

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.

Exibir comentário · Editado 27 de jan. de 2022 · Josh Keller

0

Seguidores

0

Votos

0

Comentários


Josh Keller comentou,

Comentário na comunidade Feedback - Help Center (Guide)

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.

Exibir comentário · Publicado 21 de out. de 2021 · Josh Keller

0

Seguidores

0

Votos

0

Comentários


Josh Keller comentou,

ComentárioExplore recipes

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?

Exibir comentário · Publicado 16 de mar. de 2021 · Josh Keller

0

Seguidores

4

Votos

0

Comentários


Josh Keller comentou,

Comentário na comunidade Feedback - Ticketing system (Support)

Exibir comentário · Publicado 15 de out. de 2020 · Josh Keller

0

Seguidores

2

Votos

0

Comentários


Josh Keller comentou,

Comentário na comunidade Feedback - Help Center (Guide)

Thanks @... for this slick code. Very much appreciated!

Exibir comentário · Publicado 06 de jan. de 2020 · Josh Keller

0

Seguidores

0

Votos

0

Comentários


Josh Keller comentou,

Comentário na comunidade Q&A - Users, groups, and organizations

Thanks so much, Nicholas! Nice work and greatly appreciated.

Exibir comentário · Publicado 16 de set. de 2019 · Josh Keller

0

Seguidores

0

Votos

0

Comentários