-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #710 from georchestra/remove-cdn-resources
Add js,css,font resource to avoid external dependencies
- Loading branch information
Showing
8 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,12 +114,16 @@ | |
width: 100%; | ||
} | ||
</style> | ||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> | ||
<link rel="shortcut icon" type="image/png" href="/favicon.ico" /> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.3.10/proj4.js"></script> | ||
<script async type="text/javascript" src="https://unpkg.com/[email protected]/es5.js" onload="checkBrowser()"></script> | ||
<style> | ||
@font-face { | ||
font-family: 'Noto Sans'; | ||
src: local('Noto Sans'), local('NotoSans-Regular'), url(assets/fonts/NotoSans.ttf) format('truetype'); | ||
} | ||
</style> | ||
<link rel="stylesheet" href="assets/css/font-awesome.min.css" /> | ||
<script src="assets/js/proj4.js"></script> | ||
<script async type="text/javascript" src="assets/js/es5.js" onload="checkBrowser()"></script> | ||
<script type="text/javascript"> | ||
function checkBrowser() { | ||
var browserInfo = bowser.getParser(window.navigator.userAgent); | ||
|