This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/modules/views_slideshow_cycle/js/rpp-slideshows.js b/modules/views_slideshow_cycle/js/rpp-slideshows.js | |
| new file mode 100644 | |
| index 0000000..06377ca | |
| --- /dev/null | |
| +++ b/modules/views_slideshow_cycle/js/rpp-slideshows.js | |
| @@ -0,0 +1,21 @@ | |
| +(function ($) { | |
| + // Update the window dimensions on each resize. | |
| + $(window).on("resize", function () { | |
| + Drupal.behaviors.views_slideshow_test.onResize(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/domain_config/src/DomainConfigOverrider.php b/domain_config/src/DomainConfigOverrider.php | |
| index 0ff3bcb0f13a7d615e6d6c6b7cb32c9f42c211ad..51cbbd6b94eced2ae8f6058ccae2cf8abda4d693 100644 | |
| --- a/domain_config/src/DomainConfigOverrider.php | |
| +++ b/domain_config/src/DomainConfigOverrider.php | |
| @@ -28,6 +28,19 @@ class DomainConfigOverrider implements ConfigFactoryOverrideInterface { | |
| */ | |
| protected const DOMAIN_CONFIG_PREFIX = 'domain.config.'; | |
| + /** | |
| + * Cache of previously looked up configuration overrides. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/modules/datetime/src/Plugin/views/filter/Date.php b/core/modules/datetime/src/Plugin/views/filter/Date.php | |
| index d401917b626..6f0dc28ecac 100644 | |
| --- a/core/modules/datetime/src/Plugin/views/filter/Date.php | |
| +++ b/core/modules/datetime/src/Plugin/views/filter/Date.php | |
| @@ -160,11 +160,20 @@ protected function opBetween($field) { | |
| // value as UNIX timestamp 0. | |
| $min = (!empty($this->value['min'])) ? $this->value['min'] : '@0'; | |
| + if (!empty($this->value['max']) && !strpos($this->value['max'], ':')) { | |
| + // No time was specified, so make the date range inclusive. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/modules/views/src/Plugin/views/filter/Date.php b/core/modules/views/src/Plugin/views/filter/Date.php | |
| index 84d776c4b64..8d07427e550 100644 | |
| --- a/core/modules/views/src/Plugin/views/filter/Date.php | |
| +++ b/core/modules/views/src/Plugin/views/filter/Date.php | |
| @@ -45,6 +45,13 @@ | |
| $form['value'][$component]['#default_value'] = date('m/d/Y', strtotime($form['value'][$component]['#default_value'])); | |
| } | |
| } | |
| + | |
| + if (isset($form['value']['min'])) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/modules/views/src/Plugin/views/filter/Date.php b/core/modules/views/src/Plugin/views/filter/Date.php | |
| index 84d776c4b64..8d07427e550 100644 | |
| --- a/core/modules/views/src/Plugin/views/filter/Date.php | |
| +++ b/core/modules/views/src/Plugin/views/filter/Date.php | |
| @@ -220,4 +220,20 @@ | |
| $this->query->addWhereExpression($this->options['group'], "$field $this->operator {$values['value']}"); | |
| } | |
| + /** | |
| + * {@inheritdoc} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/modules/datetime/src/Plugin/views/filter/Date.php b/core/modules/datetime/src/Plugin/views/filter/Date.php | |
| index 39cb6d931..0c7d3b91c 100644 | |
| --- a/core/modules/datetime/src/Plugin/views/filter/Date.php | |
| +++ b/core/modules/datetime/src/Plugin/views/filter/Date.php | |
| @@ -58,6 +58,20 @@ class Date extends NumericDate implements ContainerFactoryPluginInterface { | |
| */ | |
| protected $requestStack; | |
| + /** | |
| + * Mapping of granularity values to their corresponding date formats. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/domain_access/src/Plugin/Action/DomainAccessActionBase.php b/domain_access/src/Plugin/Action/DomainAccessActionBase.php | |
| index dfc2b944..b61f5691 100644 | |
| --- a/domain_access/src/Plugin/Action/DomainAccessActionBase.php | |
| +++ b/domain_access/src/Plugin/Action/DomainAccessActionBase.php | |
| @@ -72,7 +72,7 @@ abstract class DomainAccessActionBase extends ConfigurableActionBase implements | |
| '#type' => 'checkboxes', | |
| '#title' => t('Domain'), | |
| '#options' => $domains, | |
| - '#default_value' => $this->configuration['id'], | |
| + '#default_value' => $this->configuration['id'] ?? [], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/config/schema/address.schema.yml b/config/schema/address.schema.yml | |
| index e706c72..a9643b8 100644 | |
| --- a/config/schema/address.schema.yml | |
| +++ b/config/schema/address.schema.yml | |
| @@ -151,6 +151,11 @@ field.widget.settings.address_default: | |
| wrapper_type: | |
| type: string | |
| label: Wrapper type | |
| + preferred_countries: | |
| + type: sequence |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/icons/twitter.svg b/icons/twitter.svg | |
| index 293c100..e52bbc8 100644 | |
| --- a/icons/twitter.svg | |
| +++ b/icons/twitter.svg | |
| @@ -1,12 +1,30 @@ | |
| -<?xml version="1.0" encoding="UTF-8"?> | |
| -<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
| - <!-- Generator: Sketch 48.2 (47327) - http://www.bohemiancoding.com/sketch --> | |
| - <title>Shape</title> | |
| - <desc>Created with Sketch.</desc> |
NewerOlder