From c3ad8c0be482d2798442d2d38ba08f9a431b0787 Mon Sep 17 00:00:00 2001 From: Richard Herbert <1644678+richardherbert@users.noreply.github.com> Date: Tue, 31 Dec 2024 11:34:35 +0000 Subject: [PATCH] Update Application.cfc Added this.suppressRemoteComponentContent = false; --- templates/cfml/browser/Application.cfc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/cfml/browser/Application.cfc b/templates/cfml/browser/Application.cfc index bfc3bee..cc44ef3 100644 --- a/templates/cfml/browser/Application.cfc +++ b/templates/cfml/browser/Application.cfc @@ -9,6 +9,9 @@ component { // any other application.cfc stuff goes below: this.sessionManagement = true; + // Turn on/off remote cfc content whitespace + this.suppressRemoteComponentContent = false; + // any mappings go here, we create one that points to the root called test. this.mappings[ "/tests" ] = getDirectoryFromPath( getCurrentTemplatePath() );