Skip to content

Commit

Permalink
Add index features
Browse files Browse the repository at this point in the history
Co-authored-by: Antonio Sidnei Moreira Cirqueira <[email protected]>
  • Loading branch information
AlexsanderDamaceno and tonisidneimc committed Jun 15, 2021
1 parent d7d6fc2 commit b55cd90
Show file tree
Hide file tree
Showing 134 changed files with 936 additions and 255 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveshare.autoShareTerminals": false
}
6 changes: 6 additions & 0 deletions Error.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php


echo "Fatal Error";

?>
12 changes: 12 additions & 0 deletions assets/js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
function volumeToggle(button) {
var muted = $(".previewVideo").prop("muted");
$(".previewVideo").prop("muted", !muted);

$(button).find("i").toggleClass("fa-volume-mute");
$(button).find("i").toggleClass("fa-volume-up");
}

function previewEnded() {
$(".previewVideo").toggle();
$(".previewImage").toggle();
}
106 changes: 0 additions & 106 deletions assets/style/logstyle.css

This file was deleted.

131 changes: 0 additions & 131 deletions assets/style/regstyle.css

This file was deleted.

Loading

0 comments on commit b55cd90

Please sign in to comment.