Skip to content

Commit afdf254

Browse files
committed
Date and build
1 parent bc8bede commit afdf254

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build/jsroot.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let version_id = 'dev';
1111

1212
/** @summary version date
1313
* @desc Release date in format day/month/year like '14/04/2022' */
14-
let version_date = '6/12/2022';
14+
let version_date = '9/12/2022';
1515

1616
/** @summary version id and date
1717
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -56539,11 +56539,11 @@ class TCanvasPainter extends TPadPainter {
5653956539

5654056540
/** @summary Select active pad on the canvas */
5654156541
selectActivePad(pad_painter, obj_painter, click_pos) {
56542-
if ((this.snapid === undefined) || !pad_painter) return; // only interactive canvas
56542+
if (!this.snapid || !pad_painter) return; // only interactive canvas
5654356543

5654456544
let arg = null, ischanged = false;
5654556545

56546-
if ((pad_painter.snapid !== undefined) && this._websocket)
56546+
if (pad_painter.snapid && this._websocket)
5654756547
arg = { _typename: 'TWebPadClick', padid: pad_painter.snapid.toString(), objid: '', x: -1, y: -1, dbl: false };
5654856548

5654956549
if (!pad_painter.is_active_pad) {

modules/core.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ let version_id = 'dev';
55

66
/** @summary version date
77
* @desc Release date in format day/month/year like '14/04/2022' */
8-
let version_date = '6/12/2022';
8+
let version_date = '9/12/2022';
99

1010
/** @summary version id and date
1111
* @desc Produced by concatenation of {@link version_id} and {@link version_date}

0 commit comments

Comments
 (0)