Thanks you

And for your addon, I've said a lot time ago that I was interested in the photos exif functions, so of course I will keep it even if I might only start to use in a few months.
A little feedback:
So about the bug, let's call @
Milano, because this Javascript will have a similar problem.
First of all, in the quick tutorial to add buttons/plugins to Redactor, the way to extend data is not correct. It must be recursive. In other words, instead of using this bad code from mine:
Code:
$textarea.data('options', $.extend(redactorOptions, myOptions));
It should have been instead only with the bolean true as first parameter to make the function recursive:
Code:
$.extend(true, redactorOptions, myOptions);
With the recursive mode, it will fix a bug that has the Milano Smiley Manager with some addons (for example the "vfcoders-hide-hack" of @
Aayush Agrawal when the option to automatically display the editor on focus) without having any problems with XenGallery.
Unfortunately, this solution will not work with the way XenGallery adds some buttons to the editor, which will be most certainly the official way of XenForo. The buttons are inside the JS object but still doesn't appear. I don't understand why. So the Bbm addon needs anyway to change the way it adds buttons to the editor.