hof 20.0.0-beta.8 → 20.0.0-beta.9
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.
@@ -1,4 +1,4 @@
|
|
1
|
-
/* eslint-disable no-var */
|
1
|
+
/* eslint-disable no-var, vars-on-top, no-unused-vars */
|
2
2
|
'use strict';
|
3
3
|
|
4
4
|
var toolkit = require('../../../toolkit');
|
@@ -9,13 +9,11 @@ var characterCount = toolkit.characterCount;
|
|
9
9
|
var validation = toolkit.validation;
|
10
10
|
|
11
11
|
var GOVUK = require('govuk-frontend');
|
12
|
-
|
12
|
+
GOVUK.initAll();
|
13
|
+
window.GOVUK = GOVUK;
|
13
14
|
var skipToMain = require('./skip-to-main');
|
14
|
-
// eslint-disable-next-line no-unused-vars
|
15
15
|
var cookie = require('./govuk-cookies');
|
16
16
|
var cookieSettings = require('./cookieSettings');
|
17
|
-
GOVUK.initAll();
|
18
|
-
window.GOVUK = GOVUK;
|
19
17
|
|
20
18
|
toolkit.detailsSummary();
|
21
19
|
|