Hi, I’ve resolved a problem with jatypo 1.1.2 on J!1.7.2 with JoomlaCK 3.4.7.2 on FF 7.0.1
My typo button shows before other editor button but in a wrong manner, inspecting code i’ve noticed that it was inserted in DOM before div that wraps other buttons (editor-xtd-buttons).
So in plugin/system/jatypo/jatypo/assets/script.js i’ve changed on line 31:
this.button = new Element (‘div’, {‘class’:’button2-left’}).adopt(button2).injectBefore($(‘editor-xtd-buttons’));
with:
this.button = new Element (‘div’, {‘class’:’button2-left’}).adopt(button2).inject($(‘editor-xtd-buttons’),’top’);
so i can view correctly the button 🙂
Thanks to JA for its wonderful job!