Browse Source

Fix HTML editor in latest Chrome 85.0.4183.102, update to TinyMCE 4.9.11 (#7615)

pull/7815/head
Aleksander Machniak 5 years ago
parent
commit
bf2f063d03
  1. 1
      CHANGELOG
  2. 4
      jsdeps.json
  3. 2
      program/js/editor.js

1
CHANGELOG

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix HTML editor in latest Chrome 85.0.4183.102, update to TinyMCE 4.9.11 (#7615)
- Add missing localization for some label/legend elements in userinfo plugin (#7478)
- Fix importing birthday dates from Gmail vCards (BDAY:YYYYMMDD)
- Fix restoring Cc/Bcc fields from local storage (#7554)

4
jsdeps.json

@ -36,10 +36,10 @@
},
{
"lib": "tinymce",
"version": "4.8.2",
"version": "4.9.11",
"url": "https://download.tiny.cloud/tinymce/community/tinymce_$v.zip",
"dest": "program/js",
"sha1": "d7fced05acdeeb78299585ea9909b0de2b3d759d",
"sha1": "5f5fc32b852e587294a64be8fcb8af60258f9872",
"license": "LGPL",
"copyright": "Copyright (c) 1999-2015 Ephox Corp. All rights reserved",
"rm": "program/js/tinymce",

2
program/js/editor.js

@ -39,7 +39,7 @@ function rcube_text_editor(config, id)
abs_url = location.href.replace(/[?#].*$/, '').replace(/\/$/, ''),
conf = {
selector: '#' + ($('#' + id).is('.mce_editor') ? id : 'fake-editor-id'),
cache_suffix: 's=4080200',
cache_suffix: 's=40091100',
theme: 'modern',
language: config.lang,
content_css: rcmail.assets_path(config.content_css),

Loading…
Cancel
Save