Subversion Repositories SmartDukaan

Rev

Rev 33715 | Rev 33981 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33715 Rev 33720
Line 277... Line 277...
277
    doPostAjaxRequestHandler(
277
    doPostAjaxRequestHandler(
278
        `${context}/upsell/clickToCall/${customerMobile}/${upsellCallId}`,
278
        `${context}/upsell/clickToCall/${customerMobile}/${upsellCallId}`,
279
        function (response) {
279
        function (response) {
280
            if (response.responseStatus === "SUCCESS") {
280
            if (response.responseStatus === "SUCCESS") {
281
                $(".disposition-button-mk").show(); // Shows the button
281
                $(".disposition-button-mk").show(); // Shows the button
282
                showToast("Call initiated!");
282
                showToast("Call has been initiated!");
283
            }
283
            }
284
        }
284
        }
285
    );
285
    );
286
});
286
});
287
 
287