19 lines
438 B
JavaScript
19 lines
438 B
JavaScript
$(document).ready(function()
|
|
{
|
|
$('#mainMenu #flowTab').addClass('btn-active-text');
|
|
$('#ajaxForm').ajaxForm(
|
|
{
|
|
finish:function(response)
|
|
{
|
|
if(response.result == 'success')
|
|
{
|
|
bootbox.alert(response.notice, function()
|
|
{
|
|
location.href = response.locate;
|
|
});
|
|
}
|
|
return false;
|
|
}
|
|
});
|
|
});
|