-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1-update-from-sitetheme-bahn-ng' into 'main'
Resolve "Update from sitetheme-bahn-ng" Closes #1 See merge request db-ui/github/community-themes!1
- Loading branch information
Showing
71 changed files
with
25,164 additions
and
99 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1,4 @@ | ||
.DS_Store | ||
.idea | ||
*.iml | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
document.addEventListener('DOMContentLoaded', function() { | ||
// Get all divs with the 'copy' class | ||
const copyDivs = document.querySelectorAll('div.listingblock'); | ||
|
||
copyDivs.forEach(listingblock => { | ||
// Create a button | ||
const btn = document.createElement('copybutton'); | ||
btn.innerText = ''; | ||
|
||
// Add click event to the button | ||
btn.addEventListener('click', async function() { | ||
try { | ||
await copyCodeToClipboard(listingblock); | ||
alert('Code copied to clipboard!'); | ||
} catch (err) { | ||
console.error('Failed to copy Code: ', err); | ||
} | ||
}); | ||
|
||
// Append the button to the div | ||
listingblock.appendChild(btn); | ||
}); | ||
}); | ||
|
||
async function copyCodeToClipboard(listingblock) { | ||
const codeHtml = listingblock.querySelector('div.content').innerText; | ||
const blob = new Blob([codeHtml], { type: 'text/plain' }); | ||
const data = [new ClipboardItem({ 'text/plain': blob })]; | ||
await navigator.clipboard.write(data); | ||
} | ||
|
||
document.addEventListener('DOMContentLoaded', function() { | ||
// Get all divs with the 'copy' class | ||
const copyDivs = document.querySelectorAll('table.copy'); | ||
|
||
copyDivs.forEach(table => { | ||
// Create a button | ||
const btn = document.createElement('copybutton'); | ||
btn.innerText = ''; | ||
|
||
// Add click event to the button | ||
btn.addEventListener('click', async function() { | ||
try { | ||
await copyTableToClipboard(table); | ||
alert('Table copied to clipboard!'); | ||
} catch (err) { | ||
console.error('Failed to copy table: ', err); | ||
} | ||
}); | ||
|
||
// Append the button to the div | ||
table.appendChild(btn); | ||
}); | ||
}); | ||
|
||
async function copyTableToClipboard(table) { | ||
const tableHtml = table.outerHTML; | ||
const blob = new Blob([tableHtml], { type: 'text/html' }); | ||
const data = [new ClipboardItem({ 'text/html': blob })]; | ||
await navigator.clipboard.write(data); | ||
} |
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
Empty file.
Empty file.
Binary file added
BIN
+1.47 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/button_grouphover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.78 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/button_hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.85 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/button_pressed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.04 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/button_rest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.8 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/flip_grouphover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.8 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/flip_hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.8 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/flip_pressed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.8 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/flip_rest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.06 KB
...Theme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/fullpage_grouphover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.13 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/fullpage_hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.17 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/fullpage_pressed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.28 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/fullpage_rest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.04 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/home_grouphover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.04 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/home_hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.09 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/home_pressed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.23 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/home_rest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.87 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/next_grouphover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.3 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/next_hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.35 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/next_pressed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.98 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/next_rest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.89 KB
...Theme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/previous_grouphover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.31 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/previous_hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.36 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/previous_pressed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.98 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/previous_rest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.69 KB
...eme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/rotateleft_grouphover.png
Oops, something went wrong.
Binary file added
BIN
+2.04 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/rotateleft_hover.png
Oops, something went wrong.
Binary file added
BIN
+1.99 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/rotateleft_pressed.png
Oops, something went wrong.
Binary file added
BIN
+1.74 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/rotateleft_rest.png
Oops, something went wrong.
Binary file added
BIN
+1.76 KB
...me-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/rotateright_grouphover.png
Oops, something went wrong.
Binary file added
BIN
+2.11 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/rotateright_hover.png
Oops, something went wrong.
Binary file added
BIN
+1.99 KB
...Theme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/rotateright_pressed.png
Oops, something went wrong.
Binary file added
BIN
+1.77 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/rotateright_rest.png
Oops, something went wrong.
Binary file added
BIN
+1.04 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/zoomin_grouphover.png
Oops, something went wrong.
Binary file added
BIN
+2.07 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/zoomin_hover.png
Oops, something went wrong.
Binary file added
BIN
+2.11 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/zoomin_pressed.png
Oops, something went wrong.
Binary file added
BIN
+1.23 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/zoomin_rest.png
Oops, something went wrong.
Binary file added
BIN
+977 Bytes
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/zoomout_grouphover.png
Oops, something went wrong.
Binary file added
BIN
+1.88 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/zoomout_hover.png
Oops, something went wrong.
Binary file added
BIN
+1.95 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/zoomout_pressed.png
Oops, something went wrong.
Binary file added
BIN
+1.13 KB
siteTheme-Bahn-ng/site/assets/js/openseadragon-4.1.0/images/zoomout_rest.png
Oops, something went wrong.
Oops, something went wrong.