Skip to content

Commit

Permalink
Typo + comment
Browse files Browse the repository at this point in the history
  • Loading branch information
janodvarko committed Sep 21, 2012
1 parent 7a4e861 commit 85cdb3d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion extension/content/firebug/debugger/scriptView.js
Expand Up @@ -32,7 +32,12 @@ function ScriptView()
this.skipEditorBreakpointChange = false;
}

/**
* ScriptView wraps SourceEditor component that is built on top of Orion editor.
* This object is responsible for displaying JS source code in the debugger panel.
*/
ScriptView.prototype = Obj.extend(new Firebug.EventSource(),
/** @lends ScriptView */
{
dispatchName: "ScriptView",
initialized: false,
Expand Down Expand Up @@ -79,7 +84,7 @@ ScriptView.prototype = Obj.extend(new Firebug.EventSource(),
this.showSource(this.defaultSource);

// xxxHonza: Breakpoints appear and disappear if it's done without
// a timetou, why? Ask Mihai.
// a timeout, why? Ask Mihai.
var self = this;
setTimeout(function() {
self.initBreakpoints();
Expand Down

0 comments on commit 85cdb3d

Please sign in to comment.