Skip to content

Commit e9ab780

Browse files
committed
docs formatting in jq2d script
1 parent 19d1066 commit e9ab780

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/JSRoot.jq2d.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ JSROOT.define(['d3', 'jquery', 'painter', 'hierarchy', 'jquery-ui', 'jqueryui-mo
1111

1212
let BrowserLayout = JSROOT.BrowserLayout;
1313

14-
/// set browser title text
15-
/// Title also used for dragging of the float browser
14+
/** @summary Set browser title text
15+
* @desc Title also used for dragging of the float browser */
1616
BrowserLayout.prototype.setBrowserTitle = function(title) {
1717
let main = d3.select("#" + this.gui_div + " .jsroot_browser");
1818
if (!main.empty())
@@ -577,7 +577,7 @@ JSROOT.define(['d3', 'jquery', 'painter', 'hierarchy', 'jquery-ui', 'jqueryui-mo
577577
/** @summary Toggle open state of the item
578578
* @desc Used with "open all" / "close all" buttons in normal GUI
579579
* @param {boolean} isopen - if items should be expand or closed
580-
* @returns {boolean} tru when any item was changed */
580+
* @returns {boolean} true when any item was changed */
581581
HierarchyPainter.prototype.toggleOpenState = function(isopen, h) {
582582
let hitem = h || this.h;
583583

@@ -2036,13 +2036,13 @@ JSROOT.define(['d3', 'jquery', 'painter', 'hierarchy', 'jquery-ui', 'jqueryui-mo
20362036
return player;
20372037
}
20382038

2039-
/** function used with THttpServer when tree is not yet loaded
2039+
/** @summary function used with THttpServer when tree is not yet loaded
20402040
* @private */
20412041
JSROOT.drawTreePlayerKey = function(hpainter, itemname) {
20422042
return JSROOT.drawTreePlayer(hpainter, itemname, true);
20432043
}
20442044

2045-
/** function used with THttpServer when tree is not yet loaded
2045+
/** @summary function used with THttpServer when tree is not yet loaded
20462046
* @private */
20472047
JSROOT.drawLeafPlayer = function(hpainter, itemname) {
20482048
return JSROOT.drawTreePlayer(hpainter, itemname, false, true);

0 commit comments

Comments
 (0)