Title: [191209] branches/safari-601-branch/Source/WebInspectorUI
Revision
191209
Author
matthew_han...@apple.com
Date
2015-10-16 14:10:50 -0700 (Fri, 16 Oct 2015)

Log Message

Follow-up fix for r190246. rdar://problem/22939682

Unreviewed.

In merging r190246, I neglected to change two consts to vars, as per Joe's merge instructions.

* UserInterface/Views/ResourceSidebarPanel.js:
(WebInspector.ResourceSidebarPanel.prototype._scriptsCleared):
const -> var

Modified Paths

Diff

Modified: branches/safari-601-branch/Source/WebInspectorUI/ChangeLog (191208 => 191209)


--- branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-10-16 21:08:55 UTC (rev 191208)
+++ branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-10-16 21:10:50 UTC (rev 191209)
@@ -1,3 +1,15 @@
+2015-10-16  Matthew Hanson  <matthew_han...@apple.com>
+
+        Follow-up fix for r190246. rdar://problem/22939682
+
+        Unreviewed.
+
+        In merging r190246, I neglected to change two consts to vars, as per Joe's merge instructions.
+
+        * UserInterface/Views/ResourceSidebarPanel.js:
+        (WebInspector.ResourceSidebarPanel.prototype._scriptsCleared):
+        const -> var
+
 2015-10-13  Matthew Hanson  <matthew_han...@apple.com>
 
         Merge r190246. rdar://problem/22939682

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ResourceSidebarPanel.js (191208 => 191209)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ResourceSidebarPanel.js	2015-10-16 21:08:55 UTC (rev 191208)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ResourceSidebarPanel.js	2015-10-16 21:10:50 UTC (rev 191209)
@@ -311,8 +311,8 @@
 
     _scriptsCleared(event)
     {
-        const suppressOnDeselect = true;
-        const suppressSelectSibling = true;
+        var suppressOnDeselect = true;
+        var suppressSelectSibling = true;
         
         if (this._extensionScriptsFolderTreeElement) {
             if (this._extensionScriptsFolderTreeElement.parent)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to