whereas PM 26.4.0 does. (Compare the two attached screenshots.)
The latest versions of Firefox, Chrome and IE 11 show the toolbar too.
The reason CKEditor rejects Tycho turns out to be Tycho's useragent string:
Code: Select all
Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:3.0) Gecko/20100101 Goanna/20160728 PaleMoon/27.0.0a2Code: Select all
Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.1 Firefox/38.9 PaleMoon/26.4.0What does help, is raising "rv:3.0" to "rv:4.0" or higher.
In fact, I think I've found the code rejecting rv 3.0 in ckeditor.js:
Code: Select all
b.isCompatible=!(b.ie&&7>c)&&!(b.gecko&&4E4>c)&&!(b.webkit&&534>c)I don't know the reason why rv was lowered to 3.0 in Tycho, but I think it breaks all instances of CKEditor.
Sorry for bringing up yet another of those horrid useragent headaches...

