Changeset 171276 in webkit


Ignore:
Timestamp:
Jul 19, 2014 9:32:27 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: TextContentView calls wrong prototype function in the hidden() function
https://bugs.webkit.org/show_bug.cgi?id=135097

Patch by Saam Barati <sbarati@apple.com> on 2014-07-19
Reviewed by Timothy Hatcher.

Corollary bug to: https://bugs.webkit.org/show_bug.cgi?id=135001

  • UserInterface/Views/TextContentView.js:

(WebInspector.TextContentView.prototype.hidden):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r171227 r171276  
     12014-07-19  Saam Barati  <sbarati@apple.com>
     2
     3        Web Inspector: TextContentView calls wrong prototype function in the hidden() function
     4        https://bugs.webkit.org/show_bug.cgi?id=135097
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        Corollary bug to: https://bugs.webkit.org/show_bug.cgi?id=135001
     9
     10        * UserInterface/Views/TextContentView.js:
     11        (WebInspector.TextContentView.prototype.hidden):
     12
    1132014-07-18  Timothy Hatcher  <timothy@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/TextContentView.js

    r171172 r171276  
    7878    hidden: function()
    7979    {
    80         WebInspector.ResourceContentView.prototype.hidden.call(this);
     80        WebInspector.ContentView.prototype.hidden.call(this);
    8181
    8282        this._textEditor.hidden();
Note: See TracChangeset for help on using the changeset viewer.