Skip to content

Commit

Permalink
Fix: Fixed service-worker
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangsonww committed Feb 3, 2024
1 parent 8c20cef commit 0f01fe6
Show file tree
Hide file tree
Showing 21 changed files with 1,434 additions and 74 deletions.
24 changes: 24 additions & 0 deletions src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1239,6 +1239,30 @@ p {
background-color: #ff8623;
}

#subheading {
color: white;
}

#subheading:hover {
color: #f509d9;
transition: 0.1s linear;
}

#aboutHeader:hover {
color: #f509d9;
transition: 0.1s linear;
}

#profileLink {
color: white !important;
text-decoration: underline !important;
}

#profileLink:hover {
color: #ff8623 !important;
transition: 0.1s linear;
}

textarea {
resize: none;
}
Expand Down
25 changes: 0 additions & 25 deletions src/html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,31 +35,6 @@
<link rel="icon" type="image/x-icon" href="../../images/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<link rel="manifest" href="../../manifest.json">
<style>
#subheading {
color: white;
}

#subheading:hover {
color: #f509d9;
transition: 0.1s linear;
}

#aboutHeader:hover {
color: #f509d9;
transition: 0.1s linear;
}

#profileLink {
color: white !important;
text-decoration: underline !important;
}

#profileLink:hover {
color: #f509d9 !important;
transition: 0.1s linear;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CQKJ67FXZ4"></script>
<script>
window.dataLayer = window.dataLayer || [];
Expand Down
3 changes: 0 additions & 3 deletions src/html/create-account.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,6 @@ <h2>Create Account</h2>
}
});

/**
* Rotates the user stats and movie quotes displayed in the main element.
*/
function rotateUserStats() {
const stats = [
{
Expand Down
3 changes: 0 additions & 3 deletions src/html/favorites.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,6 @@ <h2>Delete a Watch List</h2>
}
}

/**
* Rotates the user stats and movie quotes displayed in the main element.
*/
function rotateUserStats() {
const stats = [
{
Expand Down
3 changes: 0 additions & 3 deletions src/html/privacy-policy.html
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,6 @@ <h2 style="color: white">Cookies and Web Beacons</h2>
}
}

/**
* Rotates the user stats and movie quotes displayed in the main element.
*/
function rotateUserStats() {
const stats = [
{
Expand Down
3 changes: 0 additions & 3 deletions src/html/reset-password.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,6 @@ <h2>Reset Password</h2>
}
});

/**
* Rotates the user stats and movie quotes displayed in the main element.
*/
function rotateUserStats() {
const stats = [
{
Expand Down
3 changes: 0 additions & 3 deletions src/html/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -461,9 +461,6 @@ <h4>Movie Overview: </h4>
return 20;
}

/**
* Rotates the user stats and movie quotes displayed in the main element.
*/
function rotateUserStats() {
const stats = [
{
Expand Down
3 changes: 0 additions & 3 deletions src/html/sign-in.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,6 @@ <h2>Sign In</h2>
}
});

/**
* Rotates the user stats and movie quotes displayed in the main element.
*/
function rotateUserStats() {
const stats = [
{
Expand Down
3 changes: 0 additions & 3 deletions src/html/terms-of-service.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,6 @@ <h2 style="color: white">Contact Us</h2>
}
}

/**
* Rotates the user stats and movie quotes displayed in the main element.
*/
function rotateUserStats() {
const stats = [
{
Expand Down
3 changes: 0 additions & 3 deletions src/html/user-profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,6 @@ <h2>Edit Profile Details</h2>
}
});

/**
* Rotates the user stats and movie quotes displayed in the main element.
*/
function rotateUserStats() {
const stats = [
{
Expand Down
Loading

0 comments on commit 0f01fe6

Please sign in to comment.