changes the default to classic

This commit is contained in:
Shannon
2018-10-12 09:50:53 +02:00
parent 019bb3ee95
commit 9198d7976f
2 changed files with 2 additions and 2 deletions

View File

@@ -187,7 +187,7 @@ function tinyMceService($log, $q, imageHelper, $locale, $http, $timeout, stylesh
//create a baseline Config to exten upon
var config = {
selector: "#" + args.htmlId,
theme: args.theme ? args.theme : "inlite",
theme: args.theme ? args.theme : "modern",
inline: true,
plugins: plugins,
valid_elements: tinyMceConfig.validElements,

View File

@@ -20,7 +20,7 @@ angular.module("umbraco").controller("Umbraco.PrevalueEditors.RteController",
$scope.model.value.maxImageSize = cfg.maxImageSize;
}
if (!$scope.model.value.theme) {
$scope.model.value.theme = "inlite";
$scope.model.value.theme = "modern";
}
tinyMceService.configuration().then(function(config){