# HG changeset patch # User paulb # Date 1129134627 0 # Node ID d700db88af0f2011ab491c83df8fbcd1fb742f45 # Parent 29f8b70da02a6436a4d587e552b586aee2ccae5e [project @ 2005-10-12 16:30:24 by paulb] Added return statement. diff -r 29f8b70da02a -r d700db88af0f examples/Common/Configurator/Resources/scripts/XSLForms.js --- a/examples/Common/Configurator/Resources/scripts/XSLForms.js Wed Oct 12 16:29:31 2005 +0000 +++ b/examples/Common/Configurator/Resources/scripts/XSLForms.js Wed Oct 12 16:30:27 2005 +0000 @@ -41,6 +41,8 @@ // NOTE: Test Konqueror bug. //showMismatch(targetFieldNameArray); + + return false; } function addFields(fieldNames, disable) { @@ -127,3 +129,5 @@ alert("Fields for " + targetFieldName + ": " + count); } } + +// vim: tabstop=4 expandtab shiftwidth=4 diff -r 29f8b70da02a -r d700db88af0f examples/Common/Dictionary/Resources/scripts/XSLForms.js --- a/examples/Common/Dictionary/Resources/scripts/XSLForms.js Wed Oct 12 16:29:31 2005 +0000 +++ b/examples/Common/Dictionary/Resources/scripts/XSLForms.js Wed Oct 12 16:30:27 2005 +0000 @@ -41,6 +41,8 @@ // NOTE: Test Konqueror bug. //showMismatch(targetFieldNameArray); + + return false; } function addFields(fieldNames, disable) { @@ -127,3 +129,5 @@ alert("Fields for " + targetFieldName + ": " + count); } } + +// vim: tabstop=4 expandtab shiftwidth=4