cclaerhout
Well-known member
The new "insert" group now has the "quote", "code", "deleted" and new "spoiler" buttons configuration, but this configuration is not a "reference". Which means if some board admins want to make them independent buttons (to avoid the dropdown), they can't unless if they rewrite the JavaScript which would be quite a waste since the code is already there.
So these buttons configuration could be in the parent level of the object then do something like this:
So these buttons configuration could be in the parent level of the object then do something like this:
Code:
insert: {
title: this.getText('insert'),
func: 'show',
dropdown:
{
quote: buttonsCustom.quote,
spoiler: buttonsCustom.spoiler,
code: buttonsCustom.code,
deleted: buttonsCustom.delete
}
}
Upvote
0