From f2371be191817ead88794e742ecd64af690e350f Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 27 Feb 2013 15:23:25 +0100 Subject: [PATCH] Fix: Update button does not appear --- htdocs/admin/const.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/admin/const.php b/htdocs/admin/const.php index 77534fd0d76..a2b07ca2d11 100644 --- a/htdocs/admin/const.php +++ b/htdocs/admin/const.php @@ -1,6 +1,6 @@ - * Copyright (C) 2004-2011 Laurent Destailleur + * Copyright (C) 2004-2013 Laurent Destailleur * Copyright (C) 2005-2012 Regis Houssin * * This program is free software; you can redistribute it and/or modify @@ -157,7 +157,7 @@ jQuery(document).ready(function() { jQuery("#delconst").show(); jQuery("#action").val('delete'); }); - jQuery(".inputforupdate").keypress(function() { + jQuery(".inputforupdate").keyup(function() { // keypress does not support back var field_id = jQuery(this).attr("id"); var row_num = field_id.split("_"); jQuery("#updateconst").show();