From b2de5987fd8223174fd1b97afe2a044d31f20593 Mon Sep 17 00:00:00 2001 From: slace Date: Wed, 23 Jun 2010 15:24:39 +0000 Subject: [PATCH] config fixes turning off debugging in jstree [TFS Changeset #70960] --- config templates/config/ClientDependency.config | 2 +- config templates/web.config | 2 +- umbraco/presentation/umbraco_client/Tree/UmbracoTree.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config templates/config/ClientDependency.config b/config templates/config/ClientDependency.config index f6f39b1582..474df8592b 100644 --- a/config templates/config/ClientDependency.config +++ b/config templates/config/ClientDependency.config @@ -10,7 +10,7 @@ NOTES: * Compression/Combination/Minification is not enabled unless debug="false" is specified on the 'compiliation' element in the web.config * A new version will invalidate both client and server cache and create new persisted files --> - + diff --git a/config templates/web.config b/config templates/web.config index 3f4d25bc19..b516ddf313 100644 --- a/config templates/web.config +++ b/config templates/web.config @@ -2,7 +2,7 @@
-
+
diff --git a/umbraco/presentation/umbraco_client/Tree/UmbracoTree.js b/umbraco/presentation/umbraco_client/Tree/UmbracoTree.js index 870e4788b5..c633e3e907 100644 --- a/umbraco/presentation/umbraco_client/Tree/UmbracoTree.js +++ b/umbraco/presentation/umbraco_client/Tree/UmbracoTree.js @@ -67,7 +67,7 @@ Umbraco.Sys.registerNamespace("Umbraco.Controls"); _activeTreeType: "content", //tracks which is the active tree type, this is used in searching and syncing. _tree: null, //reference to the jsTree object _isEditMode: false, //not really used YET - _isDebug: true, //set to true to enable alert debugging + _isDebug: false, //set to true to enable alert debugging _loadedApps: [], //stores the application names that have been loaded to track which JavaScript code has been inserted into the DOM _treeClass: "umbTree", //used for other libraries to detect which elements are an umbraco tree _currenAJAXRequest: false, //used to determine if there is currently an ajax request being executed.