OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
_backup
/
tinymce
/
tinymce
/
src
/
themes
/
mobile
/
main
/
ts
/
api
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/20/2020 06:45:48 AM
rwxr-xr-x
📄
AndroidWebapp.ts
1.64 KB
02/20/2020 06:32:19 AM
rw-r--r--
📄
IosWebapp.ts
1.57 KB
02/20/2020 06:32:19 AM
rw-r--r--
📄
MobileSchema.ts
2.16 KB
02/20/2020 06:32:20 AM
rw-r--r--
📄
Settings.ts
583 bytes
02/20/2020 06:32:20 AM
rw-r--r--
Editing: Settings.ts
Close
/** * 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 Editor from 'tinymce/core/api/Editor'; const isSkinDisabled = function (editor: Editor): boolean { return editor.settings.skin === false; }; const readOnlyOnInit = function (editor) { // Intentional short circuit, TODO: implement editor.settings.mobile return false; }; export { isSkinDisabled, readOnlyOnInit };