Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidlogic authored Aug 13, 2024
1 parent e3dcceb commit a842a89
Show file tree
Hide file tree
Showing 8 changed files with 78 additions and 43 deletions.
4 changes: 2 additions & 2 deletions confirmation.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Aug 13 2024 08:53:53 GMT+0000 (Coordinated Universal Time) -->
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Aug 13 2024 10:00:28 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="669951c4a6f44ddf03229abc" data-wf-site="669951c4a6f44ddf032299dd">
<head>
<meta charset="utf-8">
Expand Down Expand Up @@ -32,7 +32,7 @@
})(window, document, "clarity", "script", "nm5qeqdx8h");
</script>
<!-- Finsweet Cookie Consent -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="opt-out"></script>
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="informational"></script>
</head>
<body>
<div class="navbar">
Expand Down
2 changes: 1 addition & 1 deletion css/cascade-digital-marketing.webflow.css
Original file line number Diff line number Diff line change
Expand Up @@ -2557,7 +2557,7 @@ a {
background-color: #f5f5f5;
max-width: 100%;
padding: 2rem;
display: block;
display: none;
position: fixed;
inset: auto 0% 0% auto;
}
Expand Down
Binary file modified images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/webclip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Aug 13 2024 08:53:53 GMT+0000 (Coordinated Universal Time) -->
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Aug 13 2024 10:00:28 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="669951c4a6f44ddf03229abb" data-wf-site="669951c4a6f44ddf032299dd">
<head>
<meta charset="utf-8">
Expand Down Expand Up @@ -39,7 +39,7 @@
})(window, document, "clarity", "script", "nm5qeqdx8h");
</script>
<!-- Finsweet Cookie Consent -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="opt-out"></script>
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="informational"></script>
<style>
.pre-loader {
display: flex;
Expand Down Expand Up @@ -406,11 +406,11 @@ <h2 class="text-white text-centred margin-m">Sign up now</h2>
</div>
</div>
<div fs-consent-element="internal-component" class="fs-consent_component">
<div fs-consent-element="banner" class="fs-consent_banner">
<div fs-cc="banner" fs-consent-element="banner" class="fs-consent_banner">
<div class="fs-consent_banner_wrapper">
<p class="fs-consent_banner_paragraph">By using this website, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. View our <a href="https://www.ringier.com/data-privacy">Privacy Policy</a> for more information.</p>
<div fs-consent-element="internal-buttons-wrapper" class="fs-consent_banner_buttons">
<a fs-consent-element="allow" href="#" class="fs-consent_allow button w-button">Ok, got it</a>
<a fs-cc="close" fs-consent-element="allow" href="#" class="fs-consent_allow button w-button">Ok, got it</a>
</div>
</div>
</div>
Expand Down
99 changes: 67 additions & 32 deletions js/webflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -3812,7 +3812,9 @@
"use strict";
init_shared_constants();
({ IX2_RAW_DATA_IMPORTED: IX2_RAW_DATA_IMPORTED2 } = IX2EngineActionTypes_exports);
ixData = (state = Object.freeze({}), action) => {
ixData = (state = Object.freeze(
{}
), action) => {
switch (action.type) {
case IX2_RAW_DATA_IMPORTED2: {
return action.payload.ixData || Object.freeze({});
Expand Down Expand Up @@ -7682,7 +7684,11 @@
}
return "e" + elementCount++;
}
function reifyState({ events, actionLists, site } = {}) {
function reifyState({
events,
actionLists,
site
} = {}) {
const eventTypeMap = (0, import_reduce.default)(
events,
(result, event) => {
Expand Down Expand Up @@ -8387,7 +8393,11 @@
});
return totalDuration > 0 ? optimizeFloat(elapsedDuration / totalDuration) : 0;
}
function reduceListToGroup({ actionList, actionItemId, rawData }) {
function reduceListToGroup({
actionList,
actionItemId,
rawData
}) {
const { actionItemGroups, continuousParameterGroups } = actionList;
const newActionItems = [];
const takeItemUntilMatch = (actionItem) => {
Expand All @@ -8399,17 +8409,19 @@
);
return actionItem.id === actionItemId;
};
actionItemGroups && // @ts-expect-error - TS7031 - Binding element 'actionItems' implicitly has an 'any' type.
actionItemGroups.some(({ actionItems }) => {
actionItemGroups && actionItemGroups.some(({ actionItems }) => {
return actionItems.some(takeItemUntilMatch);
});
continuousParameterGroups && // @ts-expect-error - TS7006 - Parameter 'paramGroup' implicitly has an 'any' type.
continuousParameterGroups.some((paramGroup) => {
const { continuousActionGroups } = paramGroup;
return continuousActionGroups.some(({ actionItems }) => {
return actionItems.some(takeItemUntilMatch);
});
});
continuousParameterGroups && continuousParameterGroups.some(
(paramGroup) => {
const { continuousActionGroups } = paramGroup;
return continuousActionGroups.some(
({ actionItems }) => {
return actionItems.some(takeItemUntilMatch);
}
);
}
);
return (0, import_timm4.setIn)(rawData, ["actionLists"], {
[actionList.id]: {
id: actionList.id,
Expand Down Expand Up @@ -9012,9 +9024,12 @@
}, action) => {
switch (action.type) {
case IX2_RAW_DATA_IMPORTED4: {
return action.payload.ixParameters || {
/*mutable flat state*/
};
return (
// @ts-expect-error - Further investigation is needed as looks like IX2_RAW_DATA_IMPORTED is never triggered with ixParameters
action.payload.ixParameters || {
/*mutable flat state*/
}
);
}
case IX2_SESSION_STOPPED5: {
return {
Expand Down Expand Up @@ -9052,7 +9067,6 @@
init_IX2ParametersReducer();
({ ixElements: ixElements2 } = import_shared2.IX2ElementsReducer);
IX2Reducer_default = (0, import_redux.combineReducers)({
// @ts-expect-error - TS2322 - Type '(state: FixMeAny | null | undefined, action: { type: typeof IX2_RAW_DATA_IMPORTED; payload: { ixData: FixMeAny; };}) => any' is not assignable to type 'Reducer<any>'.
ixData,
ixRequest,
ixSession,
Expand Down Expand Up @@ -11090,34 +11104,39 @@
function observeRequests(store) {
observeStore2({
store,
// @ts-expect-error - TS7031 - Binding element 'ixRequest' implicitly has an 'any' type.
select: ({ ixRequest: ixRequest2 }) => ixRequest2.preview,
select: ({
ixRequest: ixRequest2
}) => ixRequest2.preview,
onChange: handlePreviewRequest
});
observeStore2({
store,
// @ts-expect-error - TS7031 - Binding element 'ixRequest' implicitly has an 'any' type.
select: ({ ixRequest: ixRequest2 }) => ixRequest2.playback,
select: ({
ixRequest: ixRequest2
}) => ixRequest2.playback,
onChange: handlePlaybackRequest
});
observeStore2({
store,
// @ts-expect-error - TS7031 - Binding element 'ixRequest' implicitly has an 'any' type.
select: ({ ixRequest: ixRequest2 }) => ixRequest2.stop,
select: ({
ixRequest: ixRequest2
}) => ixRequest2.stop,
onChange: handleStopRequest
});
observeStore2({
store,
// @ts-expect-error - TS7031 - Binding element 'ixRequest' implicitly has an 'any' type.
select: ({ ixRequest: ixRequest2 }) => ixRequest2.clear,
select: ({
ixRequest: ixRequest2
}) => ixRequest2.clear,
onChange: handleClearRequest
});
}
function observeMediaQueryChange(store) {
observeStore2({
store,
// @ts-expect-error - TS7031 - Binding element 'ixSession' implicitly has an 'any' type.
select: ({ ixSession: ixSession2 }) => ixSession2.mediaQueryKey,
select: ({
ixSession: ixSession2
}) => ixSession2.mediaQueryKey,
onChange: () => {
stopEngine(store);
clearAllStyles2({ store, elementApi: IX2BrowserApi_exports });
Expand All @@ -11129,8 +11148,9 @@
function observeOneRenderTick(store, onTick) {
const unsubscribe = observeStore2({
store,
// @ts-expect-error - TS7031 - Binding element 'ixSession' implicitly has an 'any' type.
select: ({ ixSession: ixSession2 }) => ixSession2.tick,
select: ({
ixSession: ixSession2
}) => ixSession2.tick,
// @ts-expect-error - TS7006 - Parameter 'tick' implicitly has an 'any' type.
onChange: (tick) => {
onTick(tick);
Expand Down Expand Up @@ -11200,7 +11220,12 @@
stopEngine(store);
clearAllStyles2({ store, elementApi: IX2BrowserApi_exports });
}
function startEngine({ store, rawData, allowEvents, testManual }) {
function startEngine({
store,
rawData,
allowEvents,
testManual
}) {
const { ixSession: ixSession2 } = store.getState();
if (rawData) {
store.dispatch(rawDataImported(rawData));
Expand Down Expand Up @@ -11376,6 +11401,7 @@
return;
}
bindEventType({
// @ts-expect-error - TS7031 - Binding element 'logic' implicitly has an 'any' type.
logic,
store,
events
Expand Down Expand Up @@ -11538,7 +11564,11 @@
document.body.appendChild(style);
}
}
function renderInitialGroup({ store, actionListId, eventId }) {
function renderInitialGroup({
store,
actionListId,
eventId
}) {
const { ixData: ixData2, ixSession: ixSession2 } = store.getState();
const { actionLists, events } = ixData2;
const event = events[eventId];
Expand All @@ -11558,7 +11588,12 @@
const config = (
// When useEventTarget is explicitly true, use event target/targets to query elements
// However, skip this condition when objectId is defined
itemConfig?.target?.useEventTarget === true && itemConfig?.target?.objectId == null ? { target: event.target, targets: event.targets } : itemConfig
// @ts-expect-error - Property 'target' does not exist on type 'never'.
itemConfig?.target?.useEventTarget === true && // @ts-expect-error - Property 'target' does not exist on type 'never'.
itemConfig?.target?.objectId == null ? (
// @ts-expect-error - TS18048 - 'event' is possibly 'undefined'.
{ target: event.target, targets: event.targets }
) : itemConfig
);
const itemElements = getAffectedElements2({ config, event, elementApi: IX2BrowserApi_exports });
const shouldUsePlugin = isPluginType2(actionTypeId);
Expand Down Expand Up @@ -11843,7 +11878,7 @@
} = instance;
const { ixData: ixData2, ixSession: ixSession2 } = store.getState();
const { events } = ixData2;
const event = events[eventId] || {};
const event = events && events[eventId] ? events[eventId] : {};
const { mediaQueries = ixData2.mediaQueryKeys } = event;
if (!shouldAllowMediaQuery2(mediaQueries, ixSession2.mediaQueryKey)) {
return;
Expand Down
4 changes: 2 additions & 2 deletions privacy-policy.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Aug 13 2024 08:53:53 GMT+0000 (Coordinated Universal Time) -->
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Aug 13 2024 10:00:28 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="669951c4a6f44ddf03229abd" data-wf-site="669951c4a6f44ddf032299dd">
<head>
<meta charset="utf-8">
Expand Down Expand Up @@ -32,7 +32,7 @@
})(window, document, "clarity", "script", "nm5qeqdx8h");
</script>
<!-- Finsweet Cookie Consent -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="opt-out"></script>
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="informational"></script>
</head>
<body class="body">
<div class="menu">
Expand Down
4 changes: 2 additions & 2 deletions untitled.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Aug 13 2024 08:53:53 GMT+0000 (Coordinated Universal Time) -->
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Aug 13 2024 10:00:28 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="669951c4a6f44ddf03229abe" data-wf-site="669951c4a6f44ddf032299dd">
<head>
<meta charset="utf-8">
Expand Down Expand Up @@ -32,7 +32,7 @@
})(window, document, "clarity", "script", "nm5qeqdx8h");
</script>
<!-- Finsweet Cookie Consent -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="opt-out"></script>
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="informational"></script>
</head>
<body>
<div class="page-rip">
Expand Down

0 comments on commit a842a89

Please sign in to comment.