mod-build 3.6.99-beta.4 → 3.6.99
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.
- package/gulp-tasks/templates.js +3 -1
- package/package.json +1 -1
package/gulp-tasks/templates.js
CHANGED
|
@@ -7,6 +7,8 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
7
7
|
/* eslint brace-style: 0 */
|
|
8
8
|
const { isLocal, nodeEnv, buildPath } = siteSettings;
|
|
9
9
|
const { isWhiteLabel } = siteData;
|
|
10
|
+
const isPathSubdirectory = siteData.siteData && siteData.siteData.pathSubdirectory || siteData && siteData.pathSubdirectory;
|
|
11
|
+
pathSubdirectory = !isLocal && isPathSubdirectory ? isPathSubdirectory : '';
|
|
10
12
|
|
|
11
13
|
var commonData = require('../src/data/common.js');
|
|
12
14
|
|
|
@@ -306,7 +308,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
306
308
|
// Adjustments for Modernize Consent Capture (will be adjusted with O&O Consent Implementation)
|
|
307
309
|
if (finalTCPA.includes('Modernize and up to ')) {
|
|
308
310
|
finalTCPA = finalTCPA.replace('Modernize', '<label><input class="consent-capture" type="checkbox" data-name="Modernize" data-key="33940610" checked /> Modernize</label>');
|
|
309
|
-
const tcpaPrivacyAndTerms =
|
|
311
|
+
const tcpaPrivacyAndTerms = ` Please see our <a id="tcpaPrivacy" href="/?modal=tcpaPrivacy" data-load="${pathSubdirectory ? pathSubdirectory : '/'}resources/templates/modals/privacy/" data-bind="modal-page">Privacy Notice</a> and our <a id="tcpaTerms" href="/?modal=tcpaTerms" data-load="${pathSubdirectory ? pathSubdirectory : '/'}resources/templates/modals/terms/" data-bind="modal-page">Terms of Use</a>.`;
|
|
310
312
|
finalTCPA += tcpaPrivacyAndTerms;
|
|
311
313
|
}
|
|
312
314
|
|