Skip to content

Commit

Permalink
Merge pull request #93 from talview/fix_ui_issue_for_playback_view
Browse files Browse the repository at this point in the history
Fix UI issue for playback view
  • Loading branch information
rohansharmasitoula authored Jul 9, 2024
2 parents 5a1da9c + 394ffe0 commit 6090603
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/tracker.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
.catch(function(error) {
console.error("Error:", error);
});
modal.setAttribute("style","display: flex; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.4); justify-content: center; align-items: center;");
modal.setAttribute("style","display: flex; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.4); justify-content: center; align-items: center;");
} }); }
node.appendChild(textnode);
parentNode = document.createElement("TD");
Expand Down Expand Up @@ -232,7 +232,7 @@

var close = document.createElement('div');
close.setAttribute("style","width: 100%;");
close.setAttribute("style","position: absolute; right: 35px;font-size: 28px;font-weight: bold;cursor: pointer;");
close.setAttribute("style","position: absolute; left: 15px; top: 4px; font-size: 28px;font-weight: bold;cursor: pointer;");
close.innerHTML ='<span>&times;</span>';
close.addEventListener("click", ()=>{
modal.setAttribute("style","display: none");
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2024060408;
$plugin->version = 2024070901;
$plugin->requires = 2020061500;
$plugin->release = '3.3.2 (Build: 2024060408)';
$plugin->release = '3.3.3 (Build: 2024070901)';
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'local_proview';

Expand Down

0 comments on commit 6090603

Please sign in to comment.