Subversion Repositories SmartDukaan

Rev

Rev 30022 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30022 amit.gupta 1
$(document).on('click', 'a.notify-po', function () {
30019 amit.gupta 2
    sendPONotification();
30016 amit.gupta 3
});
4
 
30019 amit.gupta 5
function sendPONotification() {
30016 amit.gupta 6
    doGetAjaxRequestHandler(`${context}/indent/send-po-notification`, function (response) {
7
        $('#main-content').html(response);
8
    });
9
}