Changeset 49062 in webkit


Ignore:
Timestamp:
Oct 2, 2009 10:24:48 PM (15 years ago)
Author:
bweinstein@apple.com
Message:

2009-10-02 Brian Weinstein <bweinstein@apple.com>

Reviewed by Timothy Hatcher.

Fixes <https://bugs.webkit.org/show_bug.cgi?id=30036>
Should be able to resize Cookie Columns.

  • inspector/front-end/CookieItemsView.js: (WebInspector.CookieItemsView.prototype.update.callback): (WebInspector.CookieItemsView.prototype.update): (WebInspector.CookieItemsView.prototype.resize):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r49060 r49062  
     12009-10-02  Brian Weinstein  <bweinstein@apple.com>
     2
     3        Reviewed by Timothy Hatcher.
     4
     5        Fixes <https://bugs.webkit.org/show_bug.cgi?id=30036>
     6        Should be able to resize Cookie Columns.
     7
     8        * inspector/front-end/CookieItemsView.js:
     9        (WebInspector.CookieItemsView.prototype.update.callback):
     10        (WebInspector.CookieItemsView.prototype.update):
     11        (WebInspector.CookieItemsView.prototype.resize):
     12
    1132009-09-25  Jon Honeycutt  <jhoneycutt@apple.com>
    214
  • trunk/WebCore/inspector/front-end/CookieItemsView.js

    r47656 r49062  
    7171                self._dataGrid = dataGrid;
    7272                self.element.appendChild(dataGrid.element);
     73                self._dataGrid.updateWidths();
    7374                if (isAdvanced)
    7475                    self.deleteButton.visible = true;
     
    247248        return dataGrid;
    248249    },
     250   
     251    resize: function()
     252    {
     253        if (this._datagrid)
     254            this._dataGrid.updateWidths();
     255    },
    249256
    250257    _deleteButtonClicked: function(event)
Note: See TracChangeset for help on using the changeset viewer.