Subversion Repositories SmartDukaan

Rev

Rev 35971 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35971 Rev 37110
Line 1316... Line 1316...
1316
        function (response) {
1316
        function (response) {
1317
            $('#' + domId).html(response);
1317
            $('#' + domId).html(response);
1318
        });
1318
        });
1319
}
1319
}
1320
 
1320
 
-
 
1321
// Agreement E-Sign Panel - menu click handler
-
 
1322
$(document).on('click', ".agreement-esign-panel", function () {
-
 
1323
    agreementEsignListing("main-content");
-
 
1324
});
-
 
1325
 
-
 
1326
function agreementEsignListing(domId) {
-
 
1327
    doAjaxRequestHandler(context + "/agreementEsignPanel", "GET",
-
 
1328
        function (response) {
-
 
1329
            $('#' + domId).html(response);
-
 
1330
        });
-
 
1331
}
-
 
1332
 
1321
// Welcome Call Panel - menu click handler
1333
// Welcome Call Panel - menu click handler
1322
$(document).on('click', ".welcome-call-panel", function () {
1334
$(document).on('click', ".welcome-call-panel", function () {
1323
    welcomeCallListing("main-content");
1335
    welcomeCallListing("main-content");
1324
});
1336
});
1325
 
1337