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:
authorKate Butler <kate@innocraft.com>2019-05-28 04:28:04 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2019-05-28 04:28:04 +0300
commitd100ab0bde28b8ec4cd28203b892df7a23113c43 (patch)
tree5f82daf7389513a6db8dab81b5da99de2419f409 /plugins/CoreHome/templates
parente35fcd8ce317a83d85543259cfd61f7e5f756931 (diff)
Update video content on Welcome widget (#14454)
* Remove Piwik promo video on Welcome widget and replace with link to Matomo videos * Fix image overlapping text on smaller screen widths * Updated screenshots for dashboard welcome widget * Update test screenshots * Revert file permissions
Diffstat (limited to 'plugins/CoreHome/templates')
-rw-r--r--plugins/CoreHome/templates/getPromoVideo.twig30
1 files changed, 6 insertions, 24 deletions
diff --git a/plugins/CoreHome/templates/getPromoVideo.twig b/plugins/CoreHome/templates/getPromoVideo.twig
index e068bb25e1..56e46d75ef 100644
--- a/plugins/CoreHome/templates/getPromoVideo.twig
+++ b/plugins/CoreHome/templates/getPromoVideo.twig
@@ -1,15 +1,12 @@
<div id="piwik-promo">
- <div id="piwik-promo-video">
- <div id="piwik-promo-thumbnail">
- <img src="plugins/Morpheus/images/video_play.png"/>
+ <a id="piwik-promo-videos-link" href="https://matomo.org/docs/videos/" rel="noreferrer noopener" target="_blank">
+ <div id="piwik-promo-video">
+ <div id="piwik-promo-thumbnail">
+ <img src="plugins/CoreHome/images/promo_video_splash.jpg"/>
+ </div>
</div>
- <div id="piwik-promo-embed" style="display:none;">
- </div>
- </div>
-
- <a id="piwik-promo-videos-link" href="https://matomo.org/blog/2012/12/piwik-how-to-videos/" rel="noreferrer noopener" target="_blank">
- {{ 'CoreHome_ViewAllPiwikVideoTutorials'|translate }}
+ <span>{{ 'CoreHome_ViewAllPiwikVideoTutorials'|translate }}</span>
</a>
<div id="piwik-promo-share">
@@ -35,18 +32,3 @@
<div id="piwik-widget-footer" style="color:#666;">{{ 'CoreHome_CloseWidgetDirections'|translate }}</div>
</div>
-
-<script type="application/javascript">
- $(function () {
- $('#piwik-promo-thumbnail').click(function () {
- var promoEmbed = $('#piwik-promo-embed'),
- widgetWidth = $(this).closest('.widgetContent').width(),
- height = (266 * widgetWidth) / 421,
- embedHtml = '<iframe width="100%" height="' + height + '" src="https://www.youtube-nocookie.com/embed/OslfF_EH81g?autoplay=1&vq=hd720&wmode=transparent" frameborder="0" wmode="Opaque"></iframe>';
-
- $(this).hide();
- promoEmbed.height(height).html(embedHtml);
- promoEmbed.show();
- });
- });
-</script>