Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ASSETS 33680 (Update) #28

Merged
merged 6 commits into from
Jan 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blocks/gmo-landing-page/gmo-landing-page.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { readBlockConfig } from '../../scripts/lib-franklin.js';

async function waitForVideoLoad() {
const video = document.querySelector('.desktop');

Check failure on line 4 in blocks/gmo-landing-page/gmo-landing-page.js

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 2 spaces but found 4
return new Promise((resolve) => {

Check failure on line 5 in blocks/gmo-landing-page/gmo-landing-page.js

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 2 spaces but found 4
video.oncanplaythrough = () => {

Check failure on line 6 in blocks/gmo-landing-page/gmo-landing-page.js

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 4 spaces but found 8
resolve();

Check failure on line 7 in blocks/gmo-landing-page/gmo-landing-page.js

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 6 spaces but found 12
};
});
}
Expand Down Expand Up @@ -33,7 +33,7 @@
hexColorOld = hexColor;
let linkActive = document.querySelector('.gmo-landing-page p a');
if (hexColor == '#000000') {
return linkActive.style.color = '#AEDBFE';
return linkActive.style.color = '#72B7F9';
}
linkActive.style.color = '#035FE6';
}
Expand Down
Loading