File: /www/wwwroot/oa.sanjiangapp.com/app/crm/leads/js/common.js
$(function()
{
$.setAjaxForm('#contactForm', function(response)
{
if(response.result == 'fail')
{
if(response.error && response.error.length)
{
$('#duplicateError').html($('.errorMessage').html());
$('#duplicateError .alert').prepend(response.error).show();
$('#duplicateError').show();
$(document).on('click', '#duplicateError #continueSubmit', function()
{
$('#duplicateError').append("<input value='1' name='continue' class='hide'>");
$('#contactForm #submit').click();
})
}
}
else
{
if(response.locate == 'reload')
{
$.reloadAjaxModal(1500);
}
else
{
setTimeout(function(){location.href = response.locate;}, 1200);
}
}
});
});