From 42dd38fb291357abce648d21eb4f61e443fc112c Mon Sep 17 00:00:00 2001 From: Kevin Giszewski Date: Mon, 18 Aug 2014 09:23:46 -0400 Subject: [PATCH] Add caching to the RTE config --- .../src/common/services/tinymce.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js b/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js index ff4d7184fe..9b50b47882 100644 --- a/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js +++ b/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js @@ -23,7 +23,7 @@ function tinyMceService(dialogService, $log, imageHelper, $http, $timeout, macro $http.get( umbRequestHelper.getApiUrl( "rteApiBaseUrl", - "GetConfiguration")), + "GetConfiguration"), { cache: true }), 'Failed to retrieve tinymce configuration'); },