Merge pull request #139 from Cultti/master

Fix issue with deleting domain
This commit is contained in:
Khanh Ngo 2016-09-13 10:12:48 +07:00 committed by GitHub
commit 194d95af57

View file

@ -118,9 +118,10 @@ $(document.body).on('click', '.delete_domain', function() {
var info = "Are you sure you want to delete " + domain + "?";
modal.find('.modal-body p').text(info);
modal.find('#button_delete_confirm').click(function() {
$.get($SCRIPT_ROOT + '/admin/domain/' + domain + '/delete');
$.get($SCRIPT_ROOT + '/admin/domain/' + domain + '/delete', function() {
window.location.href = '{{ url_for('dashboard') }}';
});
modal.modal('hide');
window.location.href = '{{ url_for('dashboard') }}';
})
modal.modal('show');