After updating a contact close the modal box and refresh the page.

This commit is contained in:
Peter Goodhall 2019-06-12 17:10:43 +01:00
parent 9db7d76569
commit 30c1db5d6a

View File

@ -2,12 +2,14 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title></title> <title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script src="<?php echo base_url(); ?>assets/js/jquery-3.3.1.min.js"></script>
</head> </head>
<body> <body>
<script type="text/javascript"> <script type="text/javascript">
$(function () { $(function () {
parent.$.fancybox.close(); parent.jQuery.fancybox.getInstance().close();
parent.location.reload(true);
}); });
</script> </script>
</body> </body>