Skip to content

Commit 81dee5c

Browse files
authored
Version 2.0.6
1 parent afc2de5 commit 81dee5c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

synoptic.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<script src="config_viewers_default.js"></script>
114114
<script>
115115
'use strict'
116-
const Version = '2.0.5'
116+
const Version = '2.0.6'
117117
const Meta = {
118118
copyright:
119119
'2018-2022 Ricardo Olsen / DSC Systems. All rights reserved.',
@@ -207,7 +207,7 @@
207207
type: 'ready',
208208
id: '2',
209209
attributes: {
210-
version: '2.0.3',
210+
version: Version,
211211
tagsList: $W.lstpnt.slice(0, -1)
212212
},
213213
links: {

synopticapi.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*/
3838
function scadavis(container, iframeparams, svgurl) {
3939
const _this = this
40-
const version = '2.0.5'
40+
const version = '2.0.6'
4141
let id
4242
let iframehtm
4343
let scrolling = ' scrolling="no" '

vega_websage.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ WebSAGE.SetIniExtended = function (inksage_labelvec, lbv, item) {
109109
item._d3arc_max = parseFloat(params[1] || 100)
110110
item._d3arc_innerRadius = parseFloat(params[2] || 0)
111111
item._d3arc_duration = parseFloat(params[3] || 750)
112-
var arc = d3.svg
112+
var arc = d3
113113
.arc()
114114
.innerRadius(item._d3arc_innerRadius)
115115
.outerRadius(100)
@@ -122,9 +122,9 @@ WebSAGE.SetIniExtended = function (inksage_labelvec, lbv, item) {
122122
.attr('d', arc)
123123
item._d3arc = sl
124124
item._d3arc.datum({ oldAngle: 0 })
125-
sl[0][0].style.cssText = item.style.cssText
125+
sl._groups[0][0].style.cssText = item.style.cssText
126126
var bb = item.getBBox()
127-
sl[0][0].setAttributeNS(
127+
sl._groups[0][0].setAttributeNS(
128128
null,
129129
'transform',
130130
item.getAttributeNS(null, 'transform') ||
@@ -344,7 +344,7 @@ WebSAGE.SetExeExtended = function (i) {
344344
(vt - WebSAGE.InkSage[i].parent._d3arc_min) /
345345
(WebSAGE.InkSage[i].parent._d3arc_max -
346346
WebSAGE.InkSage[i].parent._d3arc_min)
347-
var arc = d3.svg
347+
var arc = d3
348348
.arc()
349349
.innerRadius(WebSAGE.InkSage[i].parent._d3arc_innerRadius)
350350
.outerRadius(100)

0 commit comments

Comments
 (0)