diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-11 11:41:38 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-11 11:41:38 +0800 |
commit | 7f92579905c1bd596d547c8a423e043465f055d7 (patch) | |
tree | 844b97d56619fdf3cd75d14300e0ccb83d75f1b7 /public/js/app.js | |
parent | 6ce9d800d014f5d440271e628c538ce823bbe263 (diff) |
finish user delete page ui
Diffstat (limited to 'public/js/app.js')
-rw-r--r-- | public/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/app.js b/public/js/app.js index f6e14712..a789122b 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -104,7 +104,7 @@ function initUserSetting(){ var $this = $(this); Gogits.ajaxDelete("",{"id":$this.data("del")},function(json){ if(json.ok){ - $this.parent().remove(); + window.location.reload(); }else{ alert(json.err); } |