Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moving inline code to a main file addressing CSP requirements introdu… #367

Open
wants to merge 3 commits into
base: release
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ This release includes the following bug fixes and improvement:
1. Enhance hits panel
* Add panel horizontal and vertical direction option
* Fix metrics text and label overlap and margins
1. Support Solr 8.4 CSP requirements
1. Fix bettermap render issue when resized
1. Fix jshint warnings

Expand Down
3 changes: 3 additions & 0 deletions src/app/components/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"use strict";

require(['app'], function () {});
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<!-- load the root require context -->
<script src="vendor/require/require.js"></script>
<script src="app/components/require.config.js"></script>
<script>require(['app'], function () {})</script>
<script src="app/components/main.js"></script>
<style>
</style>

Expand Down