Skip to content

Commit 36cef76

Browse files
committed
FREDERICIA-ERJ-430-71284 fix bullet on list
1 parent 793241c commit 36cef76

File tree

5 files changed

+60
-18795
lines changed

5 files changed

+60
-18795
lines changed

web/themes/custom/subsites/fds_fredericia_theme/dist/javascripts/modernizr.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* modernizr v3.11.3
2+
* modernizr v3.12.0
33
* Build https://modernizr.com/download?-details-svg-addtest-fnbind-printshiv-setclasses-testprop-dontmin
44
*
55
* Copyright (c)
@@ -35,7 +35,7 @@
3535
* @access public
3636
*/
3737
var ModernizrProto = {
38-
_version: '3.11.3',
38+
_version: '3.12.0',
3939

4040
// Any settings that don't work as separate modules
4141
// can go in here as configuration.
@@ -1156,7 +1156,7 @@
11561156

11571157
ret = callback(div, rule);
11581158
// If this is done after page load we don't want to remove the body so check if body exists
1159-
if (body.fake) {
1159+
if (body.fake && body.parentNode) {
11601160
body.parentNode.removeChild(body);
11611161
docElement.style.overflow = docOverflow;
11621162
// Trigger layout so kinetic scrolling isn't disabled in iOS6+
@@ -1172,13 +1172,13 @@
11721172
;
11731173

11741174
/**
1175-
* domToCSS takes a camelCase string and converts it to kebab-case
1175+
* domToCSS takes a camelCase string and converts it to hyphen-case
11761176
* e.g. boxSizing -> box-sizing
11771177
*
11781178
* @access private
11791179
* @function domToCSS
11801180
* @param {string} name - String name of camelCase prop we want to convert
1181-
* @returns {string} The kebab-case version of the supplied name
1181+
* @returns {string} The hyphen-case version of the supplied name
11821182
*/
11831183
function domToCSS(name) {
11841184
return name.replace(/([A-Z])/g, function(str, m1) {
@@ -1267,12 +1267,12 @@
12671267
;
12681268

12691269
/**
1270-
* cssToDOM takes a kebab-case string and converts it to camelCase
1270+
* cssToDOM takes a hyphen-case string and converts it to camelCase
12711271
* e.g. box-sizing -> boxSizing
12721272
*
12731273
* @access private
12741274
* @function cssToDOM
1275-
* @param {string} name - String name of kebab-case prop we want to convert
1275+
* @param {string} name - String name of hyphen-case prop we want to convert
12761276
* @returns {string} The camelCase version of the supplied name
12771277
*/
12781278
function cssToDOM(name) {
@@ -1294,7 +1294,7 @@
12941294
// on our modernizr element, but instead just testing undefined vs
12951295
// empty string.
12961296

1297-
// Property names can be provided in either camelCase or kebab-case.
1297+
// Property names can be provided in either camelCase or hyphen-case.
12981298

12991299
function testProps(props, prefixed, value, skipValueTest) {
13001300
skipValueTest = is(skipValueTest, 'undefined') ? false : skipValueTest;
@@ -1379,7 +1379,7 @@
13791379

13801380
/**
13811381
* testProp() investigates whether a given style property is recognized
1382-
* Property names can be provided in either camelCase or kebab-case.
1382+
* Property names can be provided in either camelCase or hyphen-case.
13831383
*
13841384
* @memberOf Modernizr
13851385
* @name Modernizr.testProp

web/themes/custom/subsites/fds_fredericia_theme/dist/stylesheets/stylesheet.css

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)