-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Antonio Sidnei Moreira Cirqueira <[email protected]>
- Loading branch information
1 parent
d7d6fc2
commit b55cd90
Showing
134 changed files
with
936 additions
and
255 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"liveshare.autoShareTerminals": false | ||
} |
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,6 @@ | ||
<?php | ||
|
||
|
||
echo "Fatal Error"; | ||
|
||
?> |
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,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(); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.