From 8041cc0b0a238da8b34b0b5fc716b765952df0a0 Mon Sep 17 00:00:00 2001 From: Christian Maierhofer Date: Fri, 16 Oct 2015 13:58:00 +0200 Subject: addon button value for storkattribute delete --- id/ConfigWebTool/src/main/webapp/js/common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'id') diff --git a/id/ConfigWebTool/src/main/webapp/js/common.js b/id/ConfigWebTool/src/main/webapp/js/common.js index 2bf024ecb..fb71854c2 100644 --- a/id/ConfigWebTool/src/main/webapp/js/common.js +++ b/id/ConfigWebTool/src/main/webapp/js/common.js @@ -261,7 +261,7 @@ function newStorkAttribute() { var lastindex = parseInt(clone.innerHTML.match(/name="storkconfig.attributes\[(\d)/)[1]); var nextindex = lastindex + 1; clone.innerHTML = clone.innerHTML.replace(/name="storkconfig.attributes\[\d/g, 'name="storkconfig.attributes[' + nextindex); - clone.innerHTML = clone.innerHTML.replace(/(.*" value=").*?(".*)/g, '$1$2'); + clone.innerHTML = clone.innerHTML.replace(/(.*" value=").*?(".*)/, '$1$2'); target.parentNode.appendChild(clone); } function newAp() { @@ -270,6 +270,6 @@ function newAp() { var lastindex = parseInt(clone.innerHTML.match(/name="storkOA.attributeProviderPlugins\[(\d)/)[1]); var nextindex = lastindex + 1; clone.innerHTML = clone.innerHTML.replace(/name="storkOA.attributeProviderPlugins\[\d/g, 'name="storkOA.attributeProviderPlugins[' + nextindex); - clone.innerHTML = clone.innerHTML.replace(/(.*" value=").*?(".*)/, '$1$2'); + clone.innerHTML = clone.innerHTML.replace(/(.*" value=").*?(".*)/g, '$1$2'); target.parentNode.appendChild(clone); } \ No newline at end of file -- cgit v1.2.3