In my quest to create pages with large scanned documents (JPEG files), I've found a Javascript library I'd like to use for panning and zooming these large images:
https://github.com/timmywil/jquery.panzoom
Unfortunately, it requires JQuery 1.9.x or 2.x, and SilverStripe still appears to rely on 1.7.x.
I've tried blocking the Sapphire version from my page controller and replacing it with a later version of JQuery. This fixed the SCRIPT tag, but there's still some code in the Simple template that is trying to access the "$.browser" attribute, which was deprecated a long time ago and finally removed in 1.9.
Do I have any options here? Is SS planning to upgrade to a more recent version of JQuery any time soon?