@schneideress/dashboardframework 0.0.226 → 0.0.227
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/bundles/schneideress-dashboardframework.umd.js +6 -0
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +7 -1
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +7 -1
- package/fesm2015/schneideress-dashboardframework.js +6 -0
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +6 -0
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -1901,13 +1901,19 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1901
1901
|
this.baseUrl = this.getHostUrl();
|
|
1902
1902
|
/** @type {?} */
|
|
1903
1903
|
var url = this.baseUrl + this.detailPageUrl;
|
|
1904
|
+
console.log('visit page url');
|
|
1905
|
+
console.log(url);
|
|
1904
1906
|
if (this.data.widgetInfo && this.data.widgetInfo.widgetSettings) {
|
|
1905
1907
|
this.widgetSettings = this.getParsedConfig(this.data.widgetInfo.widgetSettings);
|
|
1906
1908
|
if (this.widgetSettings.customPageParams) {
|
|
1907
1909
|
/** @type {?} */
|
|
1908
1910
|
var params = this.widgetElement.getPageParamsClicked();
|
|
1911
|
+
console.log('params');
|
|
1912
|
+
console.log(params);
|
|
1909
1913
|
if (params)
|
|
1910
1914
|
url = url + '?' + params;
|
|
1915
|
+
console.log('resultant url is');
|
|
1916
|
+
console.log(url);
|
|
1911
1917
|
}
|
|
1912
1918
|
}
|
|
1913
1919
|
location.href = url;
|