doc-render-sdk 0.0.12 → 0.0.14
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/bin/doc-render-sdk.js +210 -551
- package/dist/index.mjs +0 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -13
package/dist/index.mjs
CHANGED
|
@@ -1101,10 +1101,6 @@ var RouterManager = class {
|
|
|
1101
1101
|
if (pushState) {
|
|
1102
1102
|
const hash = this.buildHash(path, params);
|
|
1103
1103
|
window.location.hash = hash;
|
|
1104
|
-
window.history.pushState({
|
|
1105
|
-
path,
|
|
1106
|
-
params
|
|
1107
|
-
}, newRoute.title, window.location.pathname + window.location.search + hash);
|
|
1108
1104
|
}
|
|
1109
1105
|
this.notifyRouteChange(newRoute);
|
|
1110
1106
|
return newRoute;
|