flux-router-component
Advanced tools
Comparing version 0.5.2 to 0.5.3
@@ -77,3 +77,3 @@ /** | ||
if (this._hasPushState) { | ||
win.history.pushState.apply(null, arguments); | ||
win.history.pushState.apply(win.history, arguments); | ||
} else if (url) { | ||
@@ -94,3 +94,3 @@ win.location.href = url; | ||
if (this._hasPushState) { | ||
win.history.replaceState.apply(null, arguments); | ||
win.history.replaceState.apply(win.history, arguments); | ||
} else if (url) { | ||
@@ -97,0 +97,0 @@ win.location.replace(url); |
{ | ||
"name": "flux-router-component", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"description": "Router-related React component and mixin for applications with Flux architecture", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -138,3 +138,3 @@ /** | ||
if (this._hasPushState) { | ||
history.pushState.apply(null, arguments); | ||
history.pushState.apply(history, arguments); | ||
} else if (url) { | ||
@@ -174,3 +174,3 @@ location.href = url; | ||
if (this._hasPushState) { | ||
history.replaceState.apply(null, arguments); | ||
history.replaceState.apply(history, arguments); | ||
} else if (url) { | ||
@@ -177,0 +177,0 @@ location.replace(url); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36001