1
- // https://root.cern/js/ v7.1.99
1
+ // https://root.cern/js/ v7.2.0
2
2
(function (global, factory) {
3
3
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
4
4
typeof define === 'function' && define.amd ? define(['exports'], factory) :
@@ -7,11 +7,11 @@ typeof define === 'function' && define.amd ? define(['exports'], factory) :
7
7
8
8
/** @summary version id
9
9
* @desc For the JSROOT release the string in format "major.minor.patch" like "7.0.0" */
10
- let version_id = "dev ";
10
+ let version_id = "7.2.0 ";
11
11
12
12
/** @summary version date
13
13
* @desc Release date in format day/month/year like "19/11/2021" */
14
- let version_date = "10 /08/2022";
14
+ let version_date = "11 /08/2022";
15
15
16
16
/** @summary version id and date
17
17
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -9314,7 +9314,7 @@ function loadMathjax() {
9314
9314
}
9315
9315
};
9316
9316
9317
- return loadScript('../ ../mathjax/3.2.0/es5/tex-svg.js')
9317
+ return loadScript(exports.source_dir + ' ../mathjax/3.2.0/es5/tex-svg.js')
9318
9318
.catch(() => loadScript('https://cdn.jsdelivr.net/npm/
[email protected] /es5/tex-svg.js'))
9319
9319
.then(() => promise);
9320
9320
}
@@ -61210,7 +61210,7 @@ class TPavePainter extends ObjectPainter {
61210
61210
}
61211
61211
61212
61212
// fill stats before drawing to have coordinates early
61213
- if (this.isStats() && !(pp && pp._fast_drawing)) {
61213
+ if (this.isStats() && !this.NoFillStats && ! (pp && pp._fast_drawing)) {
61214
61214
61215
61215
let main = pt.$main_painter || this.getMainPainter();
61216
61216
@@ -62292,6 +62292,8 @@ class TPavePainter extends ObjectPainter {
62292
62292
painter.UseContextMenu = true;
62293
62293
}
62294
62294
62295
+ painter.NoFillStats = (opt == "nofillstats");
62296
+
62295
62297
switch (pave._typename) {
62296
62298
case "TPaveLabel":
62297
62299
painter.paveDrawFunc = painter.drawPaveLabel;
0 commit comments