The code below fixes ALL the compatibility issues with the 3.3? version.
The problem was the code that added a button to the editor HTML version was outdated.
The only file that you need to change is admin.js
This file is located in wp-content/plugins/sniplets/resource/admin.js
Simply replace the last function in this file named: addLoadEvent with the following code:
addLoadEvent(function()
{
var toolbar = document.getElementById (“ed_toolbar”);
if (toolbar)
{
edButtons[edButtons.length] = new edButton(‘ed_sniplet’ ,’sniplet’,'[sniplet name]’,”,’snip’);
return false;
}
});
If anyone has any problems with this or would like to drop me a note to let me know it worked, please feel free to do so at: [email protected]
Enjoy!