Recently upgraded my Nextcloud install to v14. I've got a few edits made to one of the core javascript files which I've always copied into the nextcloud/themes/mytheme/apps/someapp/js/blah.js
directory and it would get loaded and executed at runtime instead of/in place of the original file under nextcloud/apps/someapp/js/blah.js
.
This doesn't seem to be working now. If I add an alert()
to a line of code in core, the alert runs. If I copy unmodified core into mytheme/...
and add the alert()
there, the code never runs. Has the functionality of theming changed in v14, or am I missing something?