Title: [247647] trunk/Websites/bugs.webkit.org
- Revision
- 247647
- Author
- aakash_j...@apple.com
- Date
- 2019-07-19 08:58:05 -0700 (Fri, 19 Jul 2019)
Log Message
[ews-app] EWS status-bubbles are sometimes multi-row with scroll-bar
https://bugs.webkit.org/show_bug.cgi?id=199939
Reviewed by Jonathan Bedard.
* code-review.js: Disable scrolling.
Modified Paths
Diff
Modified: trunk/Websites/bugs.webkit.org/ChangeLog (247646 => 247647)
--- trunk/Websites/bugs.webkit.org/ChangeLog 2019-07-19 15:54:29 UTC (rev 247646)
+++ trunk/Websites/bugs.webkit.org/ChangeLog 2019-07-19 15:58:05 UTC (rev 247647)
@@ -1,3 +1,12 @@
+2019-07-19 Aakash Jain <aakash_j...@apple.com>
+
+ [ews-app] EWS status-bubbles are sometimes multi-row with scroll-bar
+ https://bugs.webkit.org/show_bug.cgi?id=199939
+
+ Reviewed by Jonathan Bedard.
+
+ * code-review.js: Disable scrolling.
+
2019-06-05 Ling Ho <lingcherd...@apple.com>
Add support of zxcvbn password strength checker to bugs.webkit.org website.
Modified: trunk/Websites/bugs.webkit.org/code-review.js (247646 => 247647)
--- trunk/Websites/bugs.webkit.org/code-review.js 2019-07-19 15:54:29 UTC (rev 247646)
+++ trunk/Websites/bugs.webkit.org/code-review.js 2019-07-19 15:58:05 UTC (rev 247647)
@@ -577,6 +577,7 @@
var statusBubbleNewEWS = document.createElement('iframe');
statusBubbleNewEWS.src = '' + attachment_id + '/';
// Can't append the HTML because we need to set the onload handler before appending the iframe to the DOM.
+ statusBubbleNewEWS.scrolling = "no";
statusBubbleNewEWS._onload_ = function () { handleStatusBubbleLoadNewEWS(this); };
$('.statusBubble').append(statusBubbleNewEWS);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes