Skip to content

Commit

Permalink
Starting work on rebranch info
Browse files Browse the repository at this point in the history
  • Loading branch information
Bimmr committed Oct 5, 2023
1 parent ee0f626 commit 0d17ae3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 34 deletions.
43 changes: 15 additions & 28 deletions index.html
Expand Up @@ -321,12 +321,9 @@ <h3 v-if="settings.footer.preset.name" style="margin: 0; margin-bottom: 10px; te
<span v-if="settings.footer.preset.phone">Please contact directly at {{settings.footer.preset.phone}}.</span
><span v-else>Please contact directly by phone.</span><br />
<br />
<span v-if="settings.footer.preset.disclaimer.licenses.mfda">Mutual funds are offered through Manulife Securities Investment Services Inc. </span>
<span v-if="settings.footer.preset.disclaimer.licenses.iiroc"
>Stocks, Bonds, and Mutual funds are offered through Manulife Securities Incorporated.
</span>
<span v-if="settings.footer.preset.disclaimer.licenses.ciro">CIRO DISCLAIMER HERE</span>
<span v-if="settings.footer.preset.disclaimer.licenses.msii">
Insurance products and services are offered through Manulife Securities Insurance Inc.
Insurance products and services are offered through Manulife Wealth Insurance Inc.
</span>
<span v-else-if="settings.footer.preset.disclaimer.insuranceOBA">
Insurance products and services are offered through {{settings.footer.preset.disclaimer.insuranceOBA}}.
Expand All @@ -339,16 +336,16 @@ <h3 v-if="settings.footer.preset.name" style="margin: 0; margin-bottom: 10px; te
<br />
<span v-if="settings.footer.preset.disclaimer.logo">
<br />
This is not an official publication of Manulife Securities. The views, opinions, and recommendations are those of the author alone and they may not
necessarily be those of Manulife Securities or the advisor(s). This publication is not an offer to sell or a solicitation of an offer to buy any securities. This
This is not an official publication of Manulife Wealth. The views, opinions, and recommendations are those of the author alone and they may not
necessarily be those of Manulife Wealth or the advisor(s). This publication is not an offer to sell or a solicitation of an offer to buy any securities. This
publication is not meant to provide legal, accounting or account advice. As each situation is different, you should seek advice based on your specific
circumstances. Please call to arrange for an appointment. The information contained herein was obtained from sources believed to be reliable; however, no
representation or warranty, express or implied, is made by the writer, Manulife Securities or any other person as to its accuracy, completeness or
representation or warranty, express or implied, is made by the writer, Manulife Wealth or any other person as to its accuracy, completeness or
correctness.

<br />
<img
:src="isLight(styles.footer.textColor) ? 'https://static.twentyoverten.com/5b6c40e420726c57d29b423f/EkpFQZQ3Zmy/Manulife_Securities_linear_reversed_rgb.png' : 'https://static.twentyoverten.com/5b6c40e420726c57d29b423f/skkT7LqlHey/Manulife_Securities_linear_rgb.png'"
:src="isLight(styles.footer.textColor) ? 'https://static.twentyoverten.com/601b05ba1f9c8f1a03ec1075/pLHufCmY2T8/Manulife_Wealth_linear_white.png' : 'https://static.twentyoverten.com/601b05ba1f9c8f1a03ec1075/OnnY_w9K4bF/Manulife_Wealth_linear_cmyk.png'"
width="350"
height="auto"
/><br />
Expand Down Expand Up @@ -594,25 +591,15 @@ <h3 class="card-title">Footer Settings</h3>
<div>
<input
type="checkbox"
id="footer-preset-disclaimer-licenses-mfda"
v-model="settings.footer.preset.disclaimer.licenses.mfda"
aria-label="Toggle using MFDA disclaimer"
title="Toggle using MFDA disclaimer"
required
/>
<label for="footer-preset-disclaimer-license-mfda">MFDA</label>
</div>
<div>
<input
type="checkbox"
id="footer-preset-disclaimer-licenses-iiroc"
v-model="settings.footer.preset.disclaimer.licenses.iiroc"
aria-label="Toggle using IIROC disclaimer"
title="Toggle using IIROC disclaimer"
id="footer-preset-disclaimer-licenses-ciro"
v-model="settings.footer.preset.disclaimer.licenses.ciro"
aria-label="Toggle using CIRO disclaimer"
title="Toggle using CIRO disclaimer"
required
/>
<label for="footer-preset-disclaimer-license-iiroc">IIROC</label>
<label for="footer-preset-disclaimer-license-ciro">CIRO</label>
</div>

<div>
<input
type="checkbox"
Expand All @@ -631,12 +618,12 @@ <h3 class="card-title">Footer Settings</h3>
type="checkbox"
id="footer-preset-disclaimer-logo"
v-model="settings.footer.preset.disclaimer.logo"
aria-label="Toggle using Manulife Securities branding"
title="Toggle using Manulife Securities branding"
aria-label="Toggle using Manulife Wealth branding"
title="Toggle using Manulife Wealth branding"
checked
required
/>
<label for="footer-reset-disclaimer-logo">Manulife Securities branding</label>
<label for="footer-reset-disclaimer-logo">Manulife Wealth branding</label>
</div>
<div class="border">
<input
Expand Down
12 changes: 6 additions & 6 deletions js/scripts.js
Expand Up @@ -346,8 +346,7 @@ let app = new Vue({
logo: true,
banking: true,
licenses: {
iiroc: false,
mfda: false,
ciro: false,
msii: false
},
},
Expand Down Expand Up @@ -508,10 +507,11 @@ let app = new Vue({
if (typeof this.footer.preset.disclaimer.licenses == "undefined")
this.$set(this.footer.preset.disclaimer, "licenses", {});

if (typeof this.footer.preset.disclaimer.licenses.mfda == "undefined")
this.$set(this.footer.preset.disclaimer.licenses, "mfda", false);
if (typeof this.footer.preset.disclaimer.licenses.iiroc == "undefined")
this.$set(this.footer.preset.disclaimer.licenses, "iiroc", false);
if (typeof this.footer.preset.disclaimer.licenses.ciro == "undefined")
this.$set(this.footer.preset.disclaimer.licenses, "ciro", false);

if (this.footer.preset.disclaimer.licenses.mfda == true || this.footer.preset.disclaimer.licenses.iiroc == true)
this.$set(this.footer.preset.disclaimer.licenses, "ciro", true);

if (typeof this.footer.preset.disclaimer.logo == "undefined")
this.$set(this.footer.preset.disclaimer, "logo", true);
Expand Down

0 comments on commit 0d17ae3

Please sign in to comment.