Changeset 186690 in webkit


Ignore:
Timestamp:
Jul 10, 2015, 2:17:47 PM (11 years ago)
Author:
timothy@apple.com
Message:

Web Inspector: Storage tab should have a scope bar in the sidebar
https://bugs.webkit.org/show_bug.cgi?id=146799

Fix a couple typos found post review.

  • UserInterface/Views/StorageSidebarPanel.js:

(WebInspector.StorageSidebarPanel):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r186654 r186690  
     12015-07-10  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: Storage tab should have a scope bar in the sidebar
     4        https://bugs.webkit.org/show_bug.cgi?id=146799
     5
     6        Fix a couple typos found post review.
     7
     8        * UserInterface/Views/StorageSidebarPanel.js:
     9        (WebInspector.StorageSidebarPanel):
     10
    1112015-07-09  Timothy Hatcher  <timothy@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Views/StorageSidebarPanel.js

    r186654 r186690  
    4646            {identifier: "database", title: WebInspector.UIString("Databases"), classes: [WebInspector.DatabaseHostTreeElement, WebInspector.DatabaseTableTreeElement, WebInspector.DatabaseTreeElement]},
    4747            {identifier: "indexed-database", title: WebInspector.UIString("Indexed Databases"), classes: [WebInspector.IndexedDatabaseHostTreeElement, WebInspector.IndexedDatabaseObjectStoreTreeElement, WebInspector.IndexedDatabaseTreeElement]},
    48             {identifier: "local-sotrage", title: WebInspector.UIString("Local Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: true},
    49             {identifier: "session-sotrage", title: WebInspector.UIString("Session Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: false}];
     48            {identifier: "local-storage", title: WebInspector.UIString("Local Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: true},
     49            {identifier: "session-storage", title: WebInspector.UIString("Session Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: false}];
    5050
    5151        storageTypes.sort(function(a, b) { return a.title.localeCompare(b.title); });
Note: See TracChangeset for help on using the changeset viewer.