Changeset 247647 in webkit


Ignore:
Timestamp:
Jul 19, 2019 8:58:05 AM (5 years ago)
Author:
aakash_jain@apple.com
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.
Location:
trunk/Websites/bugs.webkit.org
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/bugs.webkit.org/ChangeLog

    r246140 r247647  
     12019-07-19  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-app] EWS status-bubbles are sometimes multi-row with scroll-bar
     4        https://bugs.webkit.org/show_bug.cgi?id=199939
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * code-review.js: Disable scrolling.
     9
    1102019-06-05  Ling Ho  <lingcherd_ho@apple.com>
    211
  • trunk/Websites/bugs.webkit.org/code-review.js

    r243921 r247647  
    578578      statusBubbleNewEWS.src  = 'https://ews.webkit.org/status-bubble/' + attachment_id + '/';
    579579      // Can't append the HTML because we need to set the onload handler before appending the iframe to the DOM.
     580      statusBubbleNewEWS.scrolling = "no";
    580581      statusBubbleNewEWS.onload = function () { handleStatusBubbleLoadNewEWS(this); };
    581582      $('.statusBubble').append(statusBubbleNewEWS);
Note: See TracChangeset for help on using the changeset viewer.