Skip to content

Commit c0e796b

Browse files
committed
Update comments
1 parent fcc6ff4 commit c0e796b

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

chrome/resources/jquery2-patch.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
newValues: newValues
5656
};*/
5757
// send event
58+
// xxxHonza: the event is sent twice from some reason (removeData is called automatically?).
5859
if (elem instanceof HTMLElement) {
5960
var event = new CustomEvent("firequery-event"/*, { "detail": detail }*/);
6061
elem.dispatchEvent(event);

lib/console-overlay.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ const { getJQuerifyCode } = require("./jquerify-code");
2424
/**
2525
* @overlay This object represents an overlay for the existing
2626
* Console panel. It's responsible for Console customization.
27-
* The overlay follows the life cycle of the pane. It's created when
28-
* the panel is created (which happens when the panel is selected
29-
* by the user for the first time) and it's destroyed when the
30-
* Toolbox is destroyed.
3127
*
32-
* FireQuery is appending a new 'jQuerify' toolbar button
28+
* The overlay follows the life cycle of the panel. It's created when
29+
* the Console panel is selected by the user for the first time and is
30+
* destroyed when the Toolbox is destroyed.
31+
*
32+
* This overlay is responsible for:
33+
* 1) appending a new 'jQuerify' toolbar button
3334
*/
3435
const ConsoleOverlay = Class(
3536
/** @lends ConsoleOverlay */

lib/data-tooltip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const XHTML_NS = "http://www.w3.org/1999/xhtml";
3131

3232
/**
3333
* This object implements a tooltip used in the MarkupView that
34-
* displays jQuery data (JSON) as an expandable tree.
34+
* displays jQuery data as an expandable tree.
3535
* Content of the tooltip is rendered using an iframe. Content
3636
* of the iframe is implemented by markup-tooltip.html
3737
*/

0 commit comments

Comments
 (0)