Skip to content

Commit

Permalink
Issue 6765: Cookie breakpoints aren't displayed within Breakpoints si…
Browse files Browse the repository at this point in the history
…de panel
  • Loading branch information
janodvarko committed Sep 17, 2013
1 parent c5aafcc commit dfd17a9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions extension/content/firebug/debugger/debugger.js
Expand Up @@ -501,6 +501,23 @@ Firebug.Debugger = Obj.extend(Firebug.ActivableModule,
FBTrace.sysout("debugger.filterMenuUpdate value: "+value+" label:"+
this.filterButton.label+'\n');
},

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// BTI

toolName: "script",

// xxxHonza: events are dispatched to connection (BTI.Browser) listeners
// It's e.g. "getBreakpoints" at this moment.
addListener: function(listener)
{
Firebug.connection.addListener(listener);
},

removeListener: function(listener)
{
Firebug.connection.removeListener(listener);
},
});

// ********************************************************************************************* //
Expand Down

0 comments on commit dfd17a9

Please sign in to comment.