@millistream/millistream-widgets 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/millistream-widgets.js +6 -6
- package/package.json +1 -1
package/millistream-widgets.js
CHANGED
|
@@ -2547,10 +2547,10 @@ var millistream_data_api = {
|
|
|
2547
2547
|
this.callbackcounter++;
|
|
2548
2548
|
url = url.replace('=buildwidget', '=' + this.fn);
|
|
2549
2549
|
|
|
2550
|
-
scriptTag = document.createElement('SCRIPT');
|
|
2551
|
-
scriptTag.id = this.fn;
|
|
2552
|
-
scriptTag.src = url;
|
|
2553
|
-
document.getElementsByTagName('HEAD')[0].appendChild(scriptTag);
|
|
2550
|
+
this.scriptTag = document.createElement('SCRIPT');
|
|
2551
|
+
this.scriptTag.id = this.fn;
|
|
2552
|
+
this.scriptTag.src = url;
|
|
2553
|
+
document.getElementsByTagName('HEAD')[0].appendChild(this.scriptTag);
|
|
2554
2554
|
},
|
|
2555
2555
|
|
|
2556
2556
|
evalJSONP: function(callback, fn) {
|
|
@@ -4088,7 +4088,7 @@ function MillistreamWidgetApi_getColumnInfo(widget, name) {
|
|
|
4088
4088
|
// optionwatch
|
|
4089
4089
|
case '3300':
|
|
4090
4090
|
case 'iv30d':
|
|
4091
|
-
|
|
4091
|
+
case 'ivXXd':
|
|
4092
4092
|
return [3300, 'numeric', 'right', widget.get_lang_text(name) || name, 0];
|
|
4093
4093
|
case '3301':
|
|
4094
4094
|
case 'iv60':
|
|
@@ -4124,7 +4124,7 @@ function MillistreamWidgetApi_getColumnInfo(widget, name) {
|
|
|
4124
4124
|
case 'hv360':
|
|
4125
4125
|
return [3311, 'numeric', 'right', widget.get_lang_text(name) || name, 0];
|
|
4126
4126
|
default:
|
|
4127
|
-
|
|
4127
|
+
return [0, 'numeric', 'right', widget.get_lang_text(name) || name, 0];
|
|
4128
4128
|
}
|
|
4129
4129
|
}
|
|
4130
4130
|
|