Hi All,
Wanted to bring this to your attention if you are using an Artisteer 4 skin you may notice that the time picker in the blog edit page is broken.
From my investigations it seems that a javascript error is happening in the script.js file generated by Artisteer 4. I'm not sure if the script files are the same in all Artisteer 4 skins or not but the problem can be solved by editing the script.js file.
If you look for this:
if ($.support.transition) {
nextItem.addClass(this.settings.direction);
tmp = nextItem.get(0).offsetHeight;
(in my script its at about line # 986)
wrap a try catch return around this line like this:
try{
tmp = nextItem.get(0).offsetHeight;
catch{ return;}
If it turns out the script file is always the same then I may be able to overwrite it in our skin exporter plugin, I need to investigate further to find out if that is the case.
Best,
Joe