Ricerche recenti


Nessuna ricerca recente

Josh Keller's Avatar

Josh Keller

Data ingresso 16 apr 2021

·

Ultima attività 25 ott 2024

Zendesk Luminary

Seguiti

0

Follower

1

Attività totali

32

Voti

8

Abbonamenti

14

PANORAMICA ATTIVITÀ

Ultima attività di Josh Keller

Josh Keller ha commentato,

CommentoEnd 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.

Visualizza commento · Data ultimo post: 06 nov 2023 · Josh Keller

0

Follower

1

Voto

0

Commenti


Josh Keller ha commentato,

CommentoGeneral 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!

Visualizza commento · Data ultimo post: 06 set 2023 · Josh Keller

0

Follower

1

Voto

0

Commenti


Josh Keller ha commentato,

CommentoGeneral 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.

Visualizza commento · Data ultimo post: 06 set 2023 · Josh Keller

0

Follower

0

Voti

0

Commenti


Josh Keller ha commentato,

Commento nella community Discussion - Tips and best practices from the community

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

Visualizza commento · Data ultimo post: 26 apr 2023 · Josh Keller

0

Follower

0

Voti

0

Commenti


Josh Keller ha commentato,

CommentoDeveloper 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.

Visualizza commento · Data ultima modifica: 27 gen 2022 · Josh Keller

0

Follower

0

Voti

0

Commenti


Josh Keller ha commentato,

Commento nella community 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.

Visualizza commento · Data ultimo post: 21 ott 2021 · Josh Keller

0

Follower

0

Voti

0

Commenti


Josh Keller ha commentato,

CommentoExplore 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?

Visualizza commento · Data ultimo post: 16 mar 2021 · Josh Keller

0

Follower

4

Voti

0

Commenti


Josh Keller ha commentato,

Commento nella community Feedback - Ticketing system (Support)

Visualizza commento · Data ultimo post: 15 ott 2020 · Josh Keller

0

Follower

2

Voti

0

Commenti


Josh Keller ha commentato,

Commento nella community Feedback - Help Center (Guide)

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

Visualizza commento · Data ultimo post: 06 gen 2020 · Josh Keller

0

Follower

0

Voti

0

Commenti


Josh Keller ha commentato,

Commento nella community Q&A - Users, groups, and organizations

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

Visualizza commento · Data ultimo post: 16 set 2019 · Josh Keller

0

Follower

0

Voti

0

Commenti