Skip to content

Commit 5d8f78d

Browse files
committed
Sync with ROOT commit, mark as JSROOT version 3.4
git-svn-id: https://subversion.gsi.de/dabc/trunk/plugins/root/js@3158 bcbf6573-9a26-0410-9ebc-ce4ab7aade96
1 parent 31b8bca commit 5d8f78d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Many old problems and errors are fixed, new functions are provided.
1515
other classes require `mathjax` option in URL
1616
5. Improve drawing of different text classes, correctly handle
1717
their alignment and scaling, special handling for IE
18+
6. Fix error with time axes - time offset was not correctly interpreted
1819

1920

2021
## Changes in v 3.3

demo/chep2015.htm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,8 @@ <h3><a href="http://go4.gsi.de">Go4 GUI</a> as interface for THttpServer</h3>
7171
<hr/>
7272

7373

74-
<h2>JavaScript ROOT poster</h2>
74+
<h2>JavaScript ROOT <a href="chep/JSROOT.pdf">poster</a></h2>
7575

76-
<h2>JSROOT <a href="chep/JSROOT.pdf">poster</a></h2>
7776
<img src="chep/JSROOT.png" height="300" width="220"/><br/>
7877
<br/>
7978
<a href="https://indico.cern.ch/event/304944/contribution/288">Abstract on indico</a><br/>

scripts/JSRootCore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
JSROOT = {};
1616

17-
JSROOT.version = "3.4 31/03/2015";
17+
JSROOT.version = "3.4 7/04/2015";
1818

1919
JSROOT.source_dir = "";
2020
JSROOT.source_min = false;

scripts/JSRootPainter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@
522522
var idF = axis['fTimeFormat'].indexOf('%F');
523523
if (idF < 0) return JSROOT.gStyle['TimeOffset'];
524524
var sof = axis['fTimeFormat'].substr(idF + 2);
525-
if (sof == '1995-01-01 00:00:00s0') return JSROOT.gStyle['TimeOffset'];
525+
if (sof == '1995-01-01 00:00:00s0') return 788918400000;
526526
// special case, used from DABC painters
527527
if ((sof == "0") || (sof == "")) return 0;
528528

0 commit comments

Comments
 (0)