Don't know if this is happening to anyone else, but it is to me.
When I use
- google.load("jqueryui", "1", {uncompressed:false});
for the jQueryUI api loading,
I get a jqueryui function that adds something strange to all buttons when creating them:
- curcat.find("div.postRow a.newpostbutt").button({
- icons: {
- primary: "ui-icon-plusthick"
- }
- });
Adds the following class to all my buttons:
- ui-button-text-icon-primary
instead of:
- ui-button-text-icon
Which immediately screws up the template classes from themeroller, as they pull their padding from ui-button-text-icon, not ui-button-text-icon-primary.
Here's the wierd part, using this as my load line for Google's jQuery API:
- google.load("jqueryui", "1.8.2", {uncompressed:false});
It loads a perfect jqueryui function that doesn't add the strange class to my buttons when they are created.
Which makes sense, since its supposed to be the newest jqueryui.
Just thought you should know.
It's been happening for the last few hours, I've currently updated all scripts to load 1.8.2
Thanks
Marcus