@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.
@@ -2112,13 +2112,19 @@
2112
2112
  this.baseUrl = this.getHostUrl();
2113
2113
  /** @type {?} */
2114
2114
  var url = this.baseUrl + this.detailPageUrl;
2115
+ console.log('visit page url');
2116
+ console.log(url);
2115
2117
  if (this.data.widgetInfo && this.data.widgetInfo.widgetSettings) {
2116
2118
  this.widgetSettings = this.getParsedConfig(this.data.widgetInfo.widgetSettings);
2117
2119
  if (this.widgetSettings.customPageParams) {
2118
2120
  /** @type {?} */
2119
2121
  var params = this.widgetElement.getPageParamsClicked();
2122
+ console.log('params');
2123
+ console.log(params);
2120
2124
  if (params)
2121
2125
  url = url + '?' + params;
2126
+ console.log('resultant url is');
2127
+ console.log(url);
2122
2128
  }
2123
2129
  }
2124
2130
  location.href = url;