Skip to content

Commit da86b88

Browse files
committed
1 parent 113a93f commit da86b88

File tree

602 files changed

+25042
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

602 files changed

+25042
-75
lines changed

flipbook/CITATION.cff

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This CITATION.cff file was generated with cffinit.
2+
# Visit https://bit.ly/cffinit to generate yours today!
3+
4+
cff-version: 1.2.0
5+
title: Patoloji Atlasi
6+
message: >-
7+
Patoloji Atlası: Tıp Fakültesi ve Sağlık Bilimleri
8+
Öğrencileri İçin Patoloji Laboratuvar Notları.
9+
Patoloji Ders Notları ve Patoloji
10+
Atlası Memorial Patoloji arşivinden derlenen
11+
vakalardan oluşmaktadır.
12+
type: software
13+
doi: 10.5281/zenodo.6382734
14+
url: https://www.patolojiatlasi.com/
15+
authors:
16+
- given-names: Serdar
17+
family-names: Balci
18+
email: serdarbalci@serdarbalci.com
19+
orcid: 'https://orcid.org/0000-0002-7852-3851'
20+
affiliation: Memorial Hospital Group Pathology Department

flipbook/annotorious/annotorious-openseadragon.umd.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flipbook/annotorious/annotorious.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flipbook/annotorious/openseadragon-annotorious.min.js

+30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flipbook/annotorious/recogito-polyfills.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flipbook/deneme/script.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
window.addEventListener('DOMContentLoaded', function() {
2+
// Function to generate a random index
3+
function getRandomIndex(max) {
4+
return Math.floor(Math.random() * max);
5+
}
6+
7+
// Get a random webpage index
8+
const randomIndex = getRandomIndex(webPages.length);
9+
10+
// Display the random webpage
11+
const iframe = document.getElementById('randomIframe');
12+
iframe.src = webPages[randomIndex];
13+
14+
const headingLink = document.createElement('a');
15+
headingLink.href = webPages[randomIndex];
16+
headingLink.textContent = 'Case of The Day';
17+
headingLink.target = "_blank"; // Open in a new window or tab
18+
19+
const heading = document.getElementById('heading');
20+
heading.appendChild(headingLink);
21+
});

0 commit comments

Comments
 (0)