TinyMCE Quattro and its wysiwyg bbcodes

TinyMCE Quattro and its wysiwyg bbcodes 2.7.2

No permission to download
After writing a post and clicking Post Reply, the original message is still showing in the quick reply box and only disappears if I refresh the page. Is this a bug or a functionality I can disable? Thanks
 
After writing a post and clicking Post Reply, the original message is still showing in the quick reply box and only disappears if I refresh the page. Is this a bug or a functionality I can disable? Thanks
Go to your the addon options, find the setting "Automatically restore draft when editor is empty" and disable it. I think there might have a race condition between XenForo et TinyMCE when the message is sent.
 
For those who have issues with the table cells when using nested Bb Codes in them, a patch has been published on Github (thanks to @Gatses ; ref).
I'm waiting for the weekend to release it here. If you notice something else during this time please let me know. Thanks.
 
@cclaerhout when editing any post with 2.5.6 in IE11 or Chrome I get the error:

Code:
OverlayLoader for posts/25401/edit-inline
XenForo.activate(%o)

XenForo editor message25401_6b1082f9_html, %o [object Object]
  "XenForo editor %s, %o"
  "message25401_6b1082f9_html"
  {
  [functions]: ,
  0: { },
  __proto__: { },
  context: { },
  jquery: "1.11.0",
  length: 1,
  selector: ""
  }

Draft mode: Xen
Draft mode: Xen
SCRIPT438: Object doesn't support property or method 'removeClass'
File: plugin.min.js, Line: 1, Column: 21484
 
Last edited:
@cclaerhout when editing any post with 2.5.6 in IE11 or Chrome I get the error:

Code:
OverlayLoader for posts/25401/edit-inline
XenForo.activate(%o)

XenForo editor message25401_6b1082f9_html, %o [object Object]
  "XenForo editor %s, %o"
  "message25401_6b1082f9_html"
  {
  [functions]: ,
  0: { },
  __proto__: { },
  context: { },
  jquery: "1.11.0",
  length: 1,
  selector: ""
  }

Draft mode: Xen
Draft mode: Xen
SCRIPT438: Object doesn't support property or method 'removeClass'
File: plugin.min.js, Line: 1, Column: 21484
It should be fixed in a few minutes. TinyMCE has changed the path to modify classes with a dom element Before the addClass, removeClass (which I forgot to check) could directly apply to the el, now the path is not the same; ie:
Before:
Code:
el.addClass('myClass');
Now:
Code:
el.classes.add('myClass');
 
@clove28
1) You need to enable this feature in the addon options
2) If it still doesn't work, try the version on Github (I've tested on local, no problem for me), the version on XenForo has a few problems I'm planning to upgrade it today.
 
@clove28
1) You need to enable this feature in the addon options
2) If it still doesn't work, try the version on Github (I've tested on local, no problem for me), the version on XenForo has a few problems I'm planning to upgrade it today.

Where exactly do I need to enable it? I'm also using the Tag addon by xfrock
 
Where exactly do I need to enable it? I'm also using the Tag addon by xfrock
tag.webp
Note that I didn't follow the Xfrock tag addon, it might now be an extension to the official XenForo addon, I don't know, which means you might need to enable the above option.
 
I enabled it, but it still not working.
Also, I'm not sure what I'm doing wrong but whenever I edit a post, it shows blank.
I can't reproduce. I'm going to synchronize the version on XenForo with the one on Github so you can check. If it doesn't, you might need to look at any errors in your browser console and/or disable any other tagging addon.
 
cclaerhout updated TinyMCE Quattro and its wysiwyg bbcodes with a new update entry:

Version 2.5.6.1 released

Version 2.5.6.1 released
This is a patch for the 2.5.6 release

  • Two fixes added for table cells
    1. Table cells: the mecanism to get back XenForo Bb Codes has been fixed ; thanks to Gatses
    2. Table cells: prevent a carriage return to pop up at the begining of a td tag
  • Update addon framework to mce 4.2.x (I had missed something) ; thanks to Xon

Read the rest of this update entry...
 
  • Like
Reactions: Xon
im using Font Awesome Dark and I noticed a couple options are hard to see, how do I style those specific areas that are hard to see?
odcCSYr.jpg
 
im using Font Awesome Dark and I noticed a couple options are hard to see, how do I style those specific areas that are hard to see?
Styles properties => color palette => modify Quattro colors ; if it does't work the way you want, create yourself a skin (read FAQ #5).
 
Back
Top Bottom