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:
authorCourtney Wright <hello@courtneywright.nz>2019-05-06 00:20:03 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2019-05-06 00:20:03 +0300
commit36bfbcf6023cfcddee91e9f8050fb0e3e7e45d9b (patch)
treeb6eeab03b248570cd473da0ff9d3027e540782fc /plugins
parent72df150735664275a60a7861e468c6ff3b152a14 (diff)
Enable scrolling in Widgetize report iframes (#14410)
Tested on Chromium and Firefox on Ubuntu and MS Edge. Fixes #14056
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Widgetize/angularjs/widget-preview/widget-preview.directive.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Widgetize/angularjs/widget-preview/widget-preview.directive.js b/plugins/Widgetize/angularjs/widget-preview/widget-preview.directive.js
index 405e91904a..6bcbeb3cb7 100644
--- a/plugins/Widgetize/angularjs/widget-preview/widget-preview.directive.js
+++ b/plugins/Widgetize/angularjs/widget-preview/widget-preview.directive.js
@@ -60,7 +60,7 @@
var urlIframe = getEmbedUrl(widgetParameters, "iframe");
// We first build the HTML code that will load the widget in an IFRAME
var widgetIframeHtml = '<div id="widgetIframe">' +
- '<iframe width="100%" height="350" src="' + urlIframe + '" scrolling="no" frameborder="0" marginheight="0" marginwidth="0">' +
+ '<iframe width="100%" height="350" src="' + urlIframe + '" scrolling="yes" frameborder="0" marginheight="0" marginwidth="0">' +
'</iframe>' +
'</div>';