1- // https://root.cern/js/ v7.1.99
1+ // https://root.cern/js/ v7.2.0
22(function (global, factory) {
33typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
44typeof define === 'function' && define.amd ? define(['exports'], factory) :
@@ -7,11 +7,11 @@ typeof define === 'function' && define.amd ? define(['exports'], factory) :
77
88/** @summary version id
99 * @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 ";
1111
1212/** @summary version date
1313 * @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";
1515
1616/** @summary version id and date
1717 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -9314,7 +9314,7 @@ function loadMathjax() {
93149314 }
93159315 };
93169316
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')
93189318 .catch(() => loadScript('https://cdn.jsdelivr.net/npm/
[email protected] /es5/tex-svg.js'))
93199319 .then(() => promise);
93209320 }
@@ -61210,7 +61210,7 @@ class TPavePainter extends ObjectPainter {
6121061210 }
6121161211
6121261212 // 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)) {
6121461214
6121561215 let main = pt.$main_painter || this.getMainPainter();
6121661216
@@ -62292,6 +62292,8 @@ class TPavePainter extends ObjectPainter {
6229262292 painter.UseContextMenu = true;
6229362293 }
6229462294
62295+ painter.NoFillStats = (opt == "nofillstats");
62296+
6229562297 switch (pave._typename) {
6229662298 case "TPaveLabel":
6229762299 painter.paveDrawFunc = painter.drawPaveLabel;
0 commit comments