mod-build 3.6.80-beta.2 → 3.6.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +1 -1
  3. package/src/scripts/mod-form-contractor.js +5 -3
  4. package/package-lock-1.json +0 -35243
  5. package/src/templates/_partials/apt-block.html +0 -30
  6. package/src/templates/_partials/scripts/analytics.html +0 -4
  7. package/src/templates/_partials/scripts/deferred-styles.html +0 -16
  8. package/src/templates/_partials/scripts/go-page-hiding-snippet.html +0 -8
  9. package/src/templates/_partials/scripts/google-maps.html +0 -1
  10. package/src/templates/_partials/scripts/google-optimize.html +0 -12
  11. package/src/templates/_partials/scripts/gtm-editorials/body/google-tag-manager-body.html +0 -5
  12. package/src/templates/_partials/scripts/gtm-editorials/head/google-tag-manager-head.html +0 -10
  13. package/src/templates/_partials/scripts/gtm-hil/body/google-tag-manager-body.html +0 -5
  14. package/src/templates/_partials/scripts/gtm-hil/head/google-tag-manager-head.html +0 -10
  15. package/src/templates/_partials/scripts/gtm-pro/body/google-tag-manager-body.html +0 -5
  16. package/src/templates/_partials/scripts/gtm-pro/head/google-tag-manager-head.html +0 -10
  17. package/src/templates/_partials/scripts/gtm-quote/body/google-tag-manager-body.html +0 -5
  18. package/src/templates/_partials/scripts/gtm-quote/head/google-tag-manager-head.html +0 -9
  19. package/src/templates/_partials/scripts/gtm-whitelabel/body/mod-google-tag-manager-body.html +0 -5
  20. package/src/templates/_partials/scripts/gtm-whitelabel/body/non-mod-google-tag-manager-body.html +0 -5
  21. package/src/templates/_partials/scripts/gtm-whitelabel/head/mod-google-tag-manager-head.html +0 -10
  22. package/src/templates/_partials/scripts/gtm-whitelabel/head/non-mod-google-tag-manager-head.html +0 -9
  23. package/src/templates/_partials/scripts/gtm-wordpress/body/google-tag-manager-body.html +0 -5
  24. package/src/templates/_partials/scripts/gtm-wordpress/head/google-tag-manager-head.html +0 -9
  25. package/src/templates/_partials/scripts/heap-bundle.html +0 -7
  26. package/src/templates/_partials/scripts/heap.html +0 -4
  27. package/src/templates/_partials/scripts/utm-params.html +0 -9
  28. package/src/templates/_partials/scripts/visual-website-optimizer.html +0 -5
  29. package/src/templates/_partials/scripts/vwo-redirect-callback.html +0 -49
  30. package/src/templates/components/qs-footer.html +0 -55
  31. package/src/templates/components/quote-footer-v1.html +0 -148
  32. package/src/templates/components/quote-footer-v2.html +0 -169
  33. package/src/templates/index.html +0 -46
@@ -1,169 +0,0 @@
1
- <div class="footer container">
2
- {{#xif "this.hideBbb !== true" }}
3
- <img src="{{assetsPath}}/images/logos/misc/bbb.svg" alt="BBB Accredited Logo" class="footer__bbb-logo footer__bbb">
4
- {{/xif}}
5
- <div class="footer__links contractor-link">
6
- {{quoteFooterData.contractor.text}}
7
- <a target="_blank" href="{{quoteFooterData.contractor.link}}" rel="noopener noreferrer">
8
- {{quoteFooterData.contractor.linkText}}
9
- </a>
10
- </div>
11
- {{#xif 'this.copyright === "top"'}}
12
- <div class="footer__row">
13
- <div class="footer__copyright">
14
- &copy; Copyright {{year}} {{company_name}}. {{{quoteFooterData.copyright}}}
15
- </div>
16
- <div class="footer__captcha-disclosure">
17
- {{quoteFooterData.capchaDisclosure.text}}
18
- <a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
19
- <a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a>&nbsp;apply.
20
- </div>
21
- </div>
22
- {{/xif}}
23
- {{#xif "this.privacylinks === 'top'"}}
24
- <div class="footer__row">
25
- <ul class="footer__links">
26
- {{#each quoteFooterData.privacyLinks}}
27
- <li>
28
- <a
29
- {{#xif "this.modal === true" }}
30
- href="{{../links.privacy}}"
31
- data-load="{{#if ../this.variation}}/modals/privacy/index.html{{else}}./modals/privacy/index.html{{/if}}"
32
- data-bind="modal-link"
33
- data-anchor="#{{this.anchor}}"
34
- {{/xif}}
35
- {{#xif "this.modal === false" }}
36
- href="{{this.anchor}}"
37
- target="_blank"
38
- rel="noopener noreferrer"
39
- {{/xif}}
40
- >
41
- {{{this.text}}}
42
- </a>
43
- </li>
44
- {{/each}}
45
- <!--
46
- - Define the customPrivacyLinks array of objects in template.js / siteconfig.js
47
- - e.g customPrivacyLinks: [{ text: 'This is a custom link', anchor: 'ccpa' }]
48
- -->
49
- {{#if this.customPrivacyLinks}}
50
- {{#each this.customPrivacyLinks}}
51
- <li>
52
- <a
53
- {{#xif "this.modal === true" }}
54
- href="{{../links.privacy}}"
55
- data-load="{{#if ../this.variation}}/modals/privacy/index.html{{else}}./modals/privacy/index.html{{/if}}"
56
- data-bind="modal-link"
57
- data-anchor="#{{this.anchor}}"
58
- {{/xif}}
59
- {{#xif "this.modal === false" }}
60
- href="{{this.anchor}}"
61
- target="_blank"
62
- rel="noopener noreferrer"
63
- {{/xif}}
64
- >
65
- {{{this.text}}}
66
- </a>
67
- </li>
68
- {{/each}}
69
- {{/if}}
70
- </ul>
71
- </div>
72
- {{/xif}}
73
- <div class="footer__row">
74
- <ul class="footer__links">
75
- {{#each quoteFooterData.links}}
76
- <li>
77
- <a href="{{#if this.modal}}/{{this.url}}{{else}}{{this.url}}{{/if}}" {{#xif "this.modal === true" }}
78
- data-load="{{#if ../this.variation}}/modals/{{this.url}}/index.html{{else}}./modals/{{this.url}}/index.html{{/if}}" data-bind="modal-link"{{/xif}} {{#if this.target}}target="{{this.target}}"{{#xif "this.target === '_blank'"}} rel="noopener noreferrer"{{/xif}}{{/if}}>{{{this.text}}}</a>
79
- </li>
80
- {{/each}}
81
- <!--
82
- - Define the customFooterLinks array of objects in template.js / siteconfig.js
83
- - e.g customFooterLinks: [{url: 'test', text: 'Test Link'}]
84
- -->
85
- {{#if this.customFooterLinks}}
86
- {{#each this.customFooterLinks}}
87
- <li>
88
- <a href="{{#if this.modal}}/{{this.url}}{{else}}{{this.url}}{{/if}}" {{#xif "this.modal === true" }}
89
- data-load="{{#if ../this.variation}}/modals/{{this.url}}/index.html{{else}}./modals/{{this.url}}/index.html{{/if}}" data-bind="modal-link"{{/xif}} {{#if this.target}}target="{{this.target}}"{{#xif "this.target === '_blank'"}} rel="noopener noreferrer"{{/xif}}{{/if}}>{{{this.text}}}</a>
90
- </li>
91
- {{/each}}
92
- {{/if}}
93
- </ul>
94
- </div>
95
- {{#xif 'this.copyright === "middle"'}}
96
- <div class="footer__row">
97
- <div class="footer__copyright">
98
- &copy; Copyright {{year}} {{company_name}}. {{{quoteFooterData.copyright}}}
99
- </div>
100
- <div class="footer__captcha-disclosure">
101
- {{quoteFooterData.capchaDisclosure.text}}
102
- <a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
103
- <a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a>&nbsp;apply.
104
- </div>
105
- </div>
106
- {{/xif}}
107
- {{#xif "this.privacylinks === 'bottom'"}}
108
- <div class="footer__row">
109
- <ul class="footer__links">
110
- {{#each quoteFooterData.privacyLinks}}
111
- <li>
112
- <a
113
- {{#xif "this.modal === true" }}
114
- href="{{../links.privacy}}"
115
- data-load="{{#if ../this.variation}}/modals/privacy/index.html{{else}}./modals/privacy/index.html{{/if}}"
116
- data-bind="modal-link"
117
- data-anchor="#{{this.anchor}}"
118
- {{/xif}}
119
- {{#xif "this.modal === false" }}
120
- href="{{this.anchor}}"
121
- target="_blank"
122
- rel="noopener noreferrer"
123
- {{/xif}}
124
- >
125
- {{{this.text}}}
126
- </a>
127
- </li>
128
- {{/each}}
129
- <!--
130
- - Define the customPrivacyLinks array of objects in template.js / siteconfig.js
131
- - e.g customPrivacyLinks: [{ text: 'This is a custom link', anchor: 'ccpa' }]
132
- -->
133
- {{#if this.customPrivacyLinks}}
134
- {{#each this.customPrivacyLinks}}
135
- <li>
136
- <a
137
- {{#xif "this.modal === true" }}
138
- href="{{../links.privacy}}"
139
- data-load="{{#if ../this.variation}}/modals/privacy/index.html{{else}}./modals/privacy/index.html{{/if}}"
140
- data-bind="modal-link"
141
- data-anchor="#{{this.anchor}}"
142
- {{/xif}}
143
- {{#xif "this.modal === false" }}
144
- href="{{this.anchor}}"
145
- target="_blank"
146
- rel="noopener noreferrer"
147
- {{/xif}}
148
- >
149
- {{{this.text}}}
150
- </a>
151
- </li>
152
- {{/each}}
153
- {{/if}}
154
- </ul>
155
- </div>
156
- {{/xif}}
157
- {{#xif 'this.copyright === "bottom"'}}
158
- <div class="footer__row">
159
- <div class="footer__copyright">
160
- &copy; Copyright {{year}} {{company_name}}. {{{quoteFooterData.copyright}}}
161
- </div>
162
- <div class="footer__captcha-disclosure">
163
- {{quoteFooterData.capchaDisclosure.text}}
164
- <a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
165
- <a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a>&nbsp;apply.
166
- </div>
167
- </div>
168
- {{/xif}}
169
- </div>
@@ -1,46 +0,0 @@
1
- <!DOCTYPE html>
2
-
3
- <head lang="en">
4
- <script>
5
- </script>
6
-
7
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
8
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
- <meta name="viewport" content="initial-scale=1.0, width=device-width" />
10
- <title>modSite</title>
11
-
12
- <link href="/styles/home.css" rel="stylesheet" type="text/css" />
13
- </head>
14
-
15
- <body>
16
- <h1>
17
- It works!
18
- </h1>
19
-
20
- <form id="form" class="form" novalidate="novalidate">
21
- <div id="step1" class="step step--active" data-bind="step">
22
- <input type="tel" name="zip" placeholder="Zip" maxlength="5" />
23
- </div>
24
- </form>
25
-
26
- <!-- build:js /scripts/vendor/jquery.js -->
27
- <script src="/node_modules/jquery/dist/jquery.js"></script>
28
- <!-- endbuild -->
29
-
30
- <!-- build:js /scripts/vendor/jquery.mask.min.js -->
31
- <script src="/node_modules/jquery-mask-plugin/dist/jquery.mask.min.js"></script>
32
- <!-- endbuild -->
33
-
34
- <script src="/scripts/mod-utils.js"></script>
35
-
36
- <script src="/scripts/mod-form.js"></script>
37
-
38
- <script src="/scripts/compiled/home.js"></script>
39
-
40
- <!-- build:js(src) /scripts/es6.js -->
41
- <script src="/scripts/es6-1.js"></script>
42
- <script src="/scripts/es6-2.js"></script>
43
- <!-- endbuild -->
44
- </body>
45
-
46
- </html>