diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2008-11-04 08:30:44 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2008-11-04 08:30:44 +0000 |
commit | d7b1338622dd3e9c8f5e85c10c72c2153308cada (patch) | |
tree | 41b352b0088125e6883760d29477e0f513f9f4a8 /WebContent/WEB-INF | |
parent | 17a148fc07d1f976c530e5bc076e51af71fa73f8 (diff) | |
download | vaadin-framework-d7b1338622dd3e9c8f5e85c10c72c2153308cada.tar.gz vaadin-framework-d7b1338622dd3e9c8f5e85c10c72c2153308cada.zip |
fixes #2150, client side debug console now cannot be opened unless debug flag is set in app init
svn changeset:5804/svn branch:trunk
Diffstat (limited to 'WebContent/WEB-INF')
-rw-r--r-- | WebContent/WEB-INF/web.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml index 7c4b790170..87d3b3d34a 100644 --- a/WebContent/WEB-INF/web.xml +++ b/WebContent/WEB-INF/web.xml @@ -9,7 +9,13 @@ <description>
IT Mill Toolkit examples
</description>
- +
+ <context-param>
+ <param-name>Debug</param-name>
+ <param-value>true</param-value>
+ <description>IT Mill Toolkit debug mode</description>
+ </context-param>
+ <!-- Permit use of IT Mill Testing Tools for this servlet continer --> <context-param> <param-name>testingToolsActive</param-name> |