From 40218db447134f5a9cabaaf245e67eec90e974b9 Mon Sep 17 00:00:00 2001 From: maksii <1761348+maksii@users.noreply.github.com> Date: Sat, 15 Jun 2024 22:52:14 +0300 Subject: [PATCH] marked lib to render github release and images. css for toast --- app/static/css/styles.css | 5 +++ app/static/js/titles.js | 79 ++++++++++++++++++++++----------------- app/templates/index.html | 4 ++ 3 files changed, 54 insertions(+), 34 deletions(-) diff --git a/app/static/css/styles.css b/app/static/css/styles.css index 58e974c..9a7b9bb 100644 --- a/app/static/css/styles.css +++ b/app/static/css/styles.css @@ -100,4 +100,9 @@ main > .container-fluid { .card-body { min-height: 190px; +} + +.toast-body { + max-height: 300px; + overflow-y: auto; } \ No newline at end of file diff --git a/app/static/js/titles.js b/app/static/js/titles.js index e267bf3..cdf8e2b 100644 --- a/app/static/js/titles.js +++ b/app/static/js/titles.js @@ -289,42 +289,53 @@ $(document).ready(function() { const repo = 'maksii/Toloka2Web'; // Change this to your repository - function checkReleaseStatus() { - const lastCheckedRelease = localStorage.getItem('lastCheckedRelease'); - fetch(`https://api.github.com/repos/${repo}/releases/latest`) - .then(response => response.json()) - .then(data => { - const latestRelease = data.tag_name; - if (lastCheckedRelease !== latestRelease) { - showReleaseToast(data.name, data.body, latestRelease); - } - }) - .catch(error => console.error('Error fetching release data:', error)); - } - - function showReleaseToast(title, content, latestRelease) { - const toastContainer = document.querySelector('.toast-container'); - const toastHTML = ` -