/** * Copyright (c) Tiny Technologies, Inc. All rights reserved. * Licensed under the LGPL or a commercial license. * For LGPL see License.txt in the project root for license information. * For commercial licenses see https://www.tiny.cloud/ */ import { Objects } from '@ephox/boulder'; import EditorManager from 'tinymce/core/api/EditorManager'; import Editor from 'tinymce/core/api/Editor'; const derive = function (editor: Editor) { const base = Objects.readOptFrom(editor.settings, 'skin_url').fold(function () { return EditorManager.baseURL + '/skins/ui/oxide'; }, function (url) { return url; }); return { content: base + '/content.mobile.min.css', ui: base + '/skin.mobile.min.css' }; }; export default { derive };