$(window).load(function () {
$.get("GetFirstTimeWizardStep", function(step)
{
if (parseInt(step) === 2) {
$.get("/api/DisplayView?viewId=afe8cdd4f", function (flagView) {
if (flagView === "False") {
$("#afe8cdd4-e7a0-4577-9e53-322d5a3d8bbf").modal("show");
$.ajax({
url: "/api/FinishSync/",
cache: false,
dataType: "html",
defer: false,
async: true,
success: function (finishSync) {
if (finishSync === "True") {
$("#Confirmation-Add-User").removeAttr("disabled");
$("#SyncGif").hide();
} else {
$("#afe8cdd4-e7a0-4577-9e53-322d5a3d8bbf").modal("hide");
}
}
});
}
});
}
});
});
the success, never recives response of webservice "/api/FinishSync/".