@mjhls/mjh-framework 1.0.966-testV5 → 1.0.966-testV6
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/dist/cjs/View.js +2 -2
- package/dist/esm/View.js +2 -2
- package/package.json +1 -1
package/dist/cjs/View.js
CHANGED
|
@@ -2130,7 +2130,7 @@ var ArticleQueue = function ArticleQueue(props) {
|
|
|
2130
2130
|
changeMeta(meta);
|
|
2131
2131
|
}
|
|
2132
2132
|
if (props.setCustomDimensions) {
|
|
2133
|
-
props.setCustomDimensions(
|
|
2133
|
+
props.setCustomDimensions(activeArticle, '200', prevUrl, '', true);
|
|
2134
2134
|
}
|
|
2135
2135
|
// if (props.pageview) props.pageview(newPath, pageviewProperties)
|
|
2136
2136
|
refreshAD(path);
|
|
@@ -2205,7 +2205,7 @@ var View = function View(props) {
|
|
|
2205
2205
|
});
|
|
2206
2206
|
var waitAndExicute = function waitAndExicute() {
|
|
2207
2207
|
if (typeof window.GA_INITIALIZED !== 'undefined') {
|
|
2208
|
-
setCustomDimensions(
|
|
2208
|
+
setCustomDimensions(article, statusCode, prevUrl, '', false);
|
|
2209
2209
|
} else timer = setTimeout(waitAndExicute, 1000);
|
|
2210
2210
|
};
|
|
2211
2211
|
waitAndExicute();
|
package/dist/esm/View.js
CHANGED
|
@@ -2120,7 +2120,7 @@ var ArticleQueue = function ArticleQueue(props) {
|
|
|
2120
2120
|
changeMeta(meta);
|
|
2121
2121
|
}
|
|
2122
2122
|
if (props.setCustomDimensions) {
|
|
2123
|
-
props.setCustomDimensions(
|
|
2123
|
+
props.setCustomDimensions(activeArticle, '200', prevUrl, '', true);
|
|
2124
2124
|
}
|
|
2125
2125
|
// if (props.pageview) props.pageview(newPath, pageviewProperties)
|
|
2126
2126
|
refreshAD(path);
|
|
@@ -2195,7 +2195,7 @@ var View = function View(props) {
|
|
|
2195
2195
|
});
|
|
2196
2196
|
var waitAndExicute = function waitAndExicute() {
|
|
2197
2197
|
if (typeof window.GA_INITIALIZED !== 'undefined') {
|
|
2198
|
-
setCustomDimensions(
|
|
2198
|
+
setCustomDimensions(article, statusCode, prevUrl, '', false);
|
|
2199
2199
|
} else timer = setTimeout(waitAndExicute, 1000);
|
|
2200
2200
|
};
|
|
2201
2201
|
waitAndExicute();
|