On Sep 11, 12:58 pm, Andrej <[EMAIL PROTECTED]> wrote:
> Hi Mike,
> Thanks for the response.
>
> How would I ignore the first callback? Didn't know that was possible.
>
> Thanks again.

var first = true;
function onAfter(...) {
    if (first) {
        first = false;
        return;
    }
    // normal logic goes here
};

Reply via email to