"David Karger" <[email protected]> wrote: > Neils, thanks for this warning; we have been doing some checkins and > seem to have broken something inadvertently. Can you check if the > unbundled version is also broken? We've been having some trouble with > jsmin, the package used to create the minified/bundled version of the > code. That would be my first suspect.
Indeed, something in the minified or bundled javascript seems to be the culprit. Turning off the "bundle" loading in my Exhibit "xwiki macro document<http://nielsmayer.com/xwiki/bin/view/Macros/Exhibit?viewer=code>" fixes the problems I was having with http://nielsmayer.com/xwiki/bin/view/Exhibit/Presidents4 and http://nielsmayer.com/xwiki/bin/view/Exhibit/NPRpods3 . Note: (1) This works and is not the source of the problem: http://trunk.simile-widgets.org/ajax/api/simile-ajax-api.js?bundle=true (2) The "fix" was to force it to load the individual files: SimileAjax.prefixURLs(scriptURLs, Exhibit.urlPrefix + "scripts/", javascriptFiles); SimileAjax.prefixURLs(cssURLs, Exhibit.urlPrefix + "styles/", cssFiles); Instead of the bundle: scriptURLs.push(Exhibit.urlPrefix + "exhibit-bundle.js"); cssURLs.push(Exhibit.urlPrefix + "exhibit-bundle.css"); Niels http://nielsmayer.com PS: When is the current "trunk" release going to be promoted to a real numbered release? Also, when will the current trunk timeline widget containing the scrollable-view feature become part of Exhibit? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SIMILE Widgets" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/simile-widgets?hl=en -~----------~----~----~----~------~----~------~--~---
