Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2019-11-18 11:56:28 +0300
committerGitHub <noreply@github.com>2019-11-18 11:56:28 +0300
commit65415140ebf9b9a0d0b7d34d922cee60c6e2f886 (patch)
tree75faf9eee32d01b65ffd96f87fcc220afc30df50 /plugins/Overlay/templates
parent21b49c1358cccc2ca92133be17021083d75f98ee (diff)
Disable range select until overlay is fully loaded. (#15162)
* Disable range select until overlay is fully loaded. * If iframe origin cannot be parsed, do not throw.
Diffstat (limited to 'plugins/Overlay/templates')
-rw-r--r--plugins/Overlay/templates/index.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Overlay/templates/index.twig b/plugins/Overlay/templates/index.twig
index 5001bc8484..c98d310787 100644
--- a/plugins/Overlay/templates/index.twig
+++ b/plugins/Overlay/templates/index.twig
@@ -16,7 +16,7 @@
<div id="overlayDateRangeSelection">
<span class="icon icon-calendar"></span>
- <select id="overlayDateRangeSelect" name="overlayDateRangeSelect">
+ <select id="overlayDateRangeSelect" name="overlayDateRangeSelect" disabled>
<option value="day;today">{{ 'Intl_Today'|translate }}</option>
<option value="day;yesterday">{{ 'Intl_Yesterday'|translate }}</option>
<option value="week;today">{{ 'General_CurrentWeek'|translate }}</option>