Hi
About
Admittedly, I didn't clear my cache... is that really all that was required to fix the issue?
If you see the html source codes, all the js and css links for files we provide, contains a reference to the version
- Code: Select all
<script type="text/javascript" src="/jq/jquery_ui/plugins/jquery.ba-throttle-debounce.js?v=1.9.0.xxxx"></script>
Since the browser caches the css and javascript files, and these "params" ?v=1.9.0.xxxx change on every new version, if you forget to update wwwroot before running a given project for the first time, the cache for a given
1.9.0.xxxx version gets occupied with older files from earlier versions. That's why you need to clear the cache, hitting Ctrl+F5, because the cache gets filled with invalid files.
In the next versions, we're going to introduce a new scheme to verify if the wwwroot is updated and show a div if not.