Restructured the setTimeout function.

This commit is contained in:
Menaka Jayawardena 2017-08-29 15:13:39 +05:30
parent e238cfd2f9
commit d8a8f6adf7
2 changed files with 8 additions and 4 deletions

View File

@ -428,8 +428,10 @@ var savePolicy = function (policy, isActive, serviceURL) {
$(".add-policy").addClass("hidden");
$(".policy-naming").addClass("hidden");
$(".policy-message").removeClass("hidden");
setTimeout(function(){}, 1000);
setTimeout(function(){
window.location.href = "/devicemgt/policies";
}, 1000);
},
function (data) {
}

View File

@ -184,8 +184,10 @@ $(document).ready(function () {
// Refreshing with success message
$("#role-create-form").addClass("hidden");
$("#role-created-msg").removeClass("hidden");
setTimeout(function(){}, 1000);
setTimeout(function(){
window.location.href = "/devicemgt/roles";
}, 1000);
}
}, function (data) {
var payload = JSON.parse(data.responseText);