From 1a4762bba2da56aee0d6d36fbf37fbabe0041e7e Mon Sep 17 00:00:00 2001 From: wyd621 Date: Fri, 2 May 2014 02:48:46 +0000 Subject: [PATCH] * fix for 129. --- www/js/my.full.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/js/my.full.js b/www/js/my.full.js index e35798d130..282b38208f 100644 --- a/www/js/my.full.js +++ b/www/js/my.full.js @@ -460,7 +460,15 @@ function setForm() */ function setFormAction(actionLink, hiddenwin) { - // if(hiddenwin) $('form').attr('target', hiddenwin); + if(hiddenwin) + { + $('form').attr('target', hiddenwin); + } + else + { + $('form').removeAttr('target'); + } + $('form').attr('action', actionLink).submit(); }