Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
qoomon committed Aug 7, 2024
1 parent 78b885c commit 3637198
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
logo: 'https://qoomon.github.io/aws-s3-bucket-browser/logo.png',
favicon: 'https://qoomon.github.io/aws-s3-bucket-browser/favicon.ico',
primaryColor: '#167df0',
allowDownloadAll: true,
allowDownloadAll: true, // enable or disable 'download all' button to download all files as a zip archive

bucketUrl: undefined,
// If bucketUrl is undefined, this script tries to determine bucket Rest API URL from this file location itself.
Expand Down Expand Up @@ -48,29 +48,34 @@
<title>Bucket Browser</title>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css"
integrity="sha384-HphS8cQyN+eYiJ5PMbzShG6qZdRtvHPVLPkYb8JwMkmNgaIxrFVDhQe3jIbq3EZ2" crossorigin="anonymous">
integrity="sha384-HphS8cQyN+eYiJ5PMbzShG6qZdRtvHPVLPkYb8JwMkmNgaIxrFVDhQe3jIbq3EZ2"
crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.5.2/css/all.css"
integrity="sha384-PPIZEGYM1v8zp5Py7UjFb79S58UeqCL9pYVnVPURKEqvioPROaVAJKKLzvH2rDnI" crossorigin="anonymous">
<script src="https://unpkg.com/[email protected]/dist/vue.global.prod.js"
integrity="sha384-PPIZEGYM1v8zp5Py7UjFb79S58UeqCL9pYVnVPURKEqvioPROaVAJKKLzvH2rDnI"
crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.global.prod.js"
integrity="sha384-dABb4ekX7QBOUdIIKzqjXGEapo0jlc8DxsRNpJs1DtDCvg1d0hatybOPLMrZJHer"
crossorigin="anonymous"></script>

<link rel="stylesheet" href="https://unpkg.com/@ntohq/[email protected]/dist/buefy.min.css"
integrity="sha384-uKOSQ8X8o+jTwmPclX1z/d6IKB+spCvEua2ysnQprHMuYMf35xBOMGDxejgM2qGS" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ntohq/[email protected]/dist/buefy.min.css"
integrity="sha384-uKOSQ8X8o+jTwmPclX1z/d6IKB+spCvEua2ysnQprHMuYMf35xBOMGDxejgM2qGS"
crossorigin="anonymous">
<script>window.process = {env: {NODE_ENV: 'production'}};</script>
<script src="https://unpkg.com/@ntohq/[email protected]/dist/buefy.min.js"
<script src="https://cdn.jsdelivr.net/npm/@ntohq/[email protected]/dist/buefy.min.js"
integrity="sha384-fd8rwC0JXdulBombqOXIudg/1G+9AbB0zDYPAi8SfJy+RemRrq0jG1TC6PUS8EpX"
crossorigin="anonymous"></script>

<script src="https://unpkg.com/[email protected]/min/moment.min.js"
<script src="https://cdn.jsdelivr.net/npm/[email protected]/min/moment.min.js"
integrity="sha384-jzJ+sNWbKe71gDLLfQKgdtslQjhK70oKLFN+wmwxyg6mQN7Vem+wzce4pryF0HP/"
crossorigin="anonymous"></script>

<script src="https://cdn.jsdelivr.net/npm/zero-md@3?register" type="module"
integrity="sha384-rEobhniwlwAquQiUTy2McGJWpm0H1EpkURdLKoThh6Lv2fkuM2NPIX64ptgfC8Me"
crossorigin="anonymous"></script>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/umd/index.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/umd/index.min.js"
integrity="sha384-HqC294x+jARmk/wUrzXlnRpiZrmiHJ4BIKph0mrcMJ/cLuMkNDHY0IjbDanCNhcU"
crossorigin="anonymous"></script>


<!-- Explorer App Style -->
Expand Down

0 comments on commit 3637198

Please sign in to comment.