We just released an updated 4.3 to our users but for some reason the custom plugin JavaScript is not being refreshed. The network tab on chrome shows the cache busing URL Param being used but the old source is being delivered.
Anyone else seen this? Ideas to fix? Issue with chrome? Telling everyone to clear their browser cache isn't much fun.
Thanks in advance

Maybe server sends HTTP
Maybe server sends HTTP headers which somehow have higher priority than URL param change? I remember that someone had similar problem, but no details unfortunately.
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
I was wrong
Hi Reinmar
The cache was busting, my code was wrong. Because I was inserting a DIV with our plugin it was disappearing because we didn't have 'CreateDiv' option enabled. Presumably this sets up the DTD correctly. Which leads me to another question, but I'll create another post so it's relevant.
Dave
The ACF is the answer :)
The ACF is the answer :)
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Unknown Object
Hi Reinmar
We have:
editor.addCommand(pluginName, new CKEDITOR.dialogCommand(pluginName, { allowedContent: 'widget[id,title]' }));Which I believe sorts out the ACF correctly. We see the placeholder fine, and the source looks like this:
Before 4.3, when we hovered over the placeholder it would say 'My Widget'. Now we just see 'Unknown Object'. Is there a way for the editor to show what's in the title attribute when hovering over the placeholder?
Dave