Skip to content

Commit ec9da3e

Browse files
committed
my bug
1 parent 808784f commit ec9da3e

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "history",
33
"repo": "devote/HTML5-History-API",
44
"description": "HTML5 History API expansion for browsers not supporting pushState, replaceState",
5-
"version": "4.1.3",
5+
"version": "4.1.4",
66
"keywords": ["history", "pushState", "replaceState"],
77
"main": "history.js",
88
"scripts": ["history.js"],

history.iegte8.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* History API JavaScript Library v4.1.3
2+
* History API JavaScript Library v4.1.4
33
*
44
* Support: IE8+, FF3+, Opera 9+, Safari, Chrome and other
55
*
@@ -11,7 +11,7 @@
1111
* http://www.opensource.org/licenses/mit-license.php
1212
* http://www.gnu.org/licenses/gpl.html
1313
*
14-
* Update: 2014-05-14 14:06
14+
* Update: 2014-05-14 14:27
1515
*/
1616
(function(window) {
1717
// Prevent the code from running if there is no window.history object
@@ -113,7 +113,7 @@
113113
* @param {String} [basepath]
114114
*/
115115
"redirect": function(type, basepath) {
116-
settings["basepath"] = ('' + (basepath = basepath == null ?
116+
settings["basepath"] = basepath = ('' + (basepath == null ?
117117
settings["basepath"] : basepath)).replace(/(?:^|\/)[^\/]*$/, '/');
118118
settings["type"] = type = type == null ? settings["type"] : type;
119119
if (window.top == window.self) {

history.iegte8.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

history.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* History API JavaScript Library v4.1.3
2+
* History API JavaScript Library v4.1.4
33
*
44
* Support: IE6+, FF3+, Opera 9+, Safari, Chrome and other
55
*
@@ -11,7 +11,7 @@
1111
* http://www.opensource.org/licenses/mit-license.php
1212
* http://www.gnu.org/licenses/gpl.html
1313
*
14-
* Update: 2014-05-14 14:06
14+
* Update: 2014-05-14 14:27
1515
*/
1616
(function(window) {
1717
// Prevent the code from running if there is no window.history object

history.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "html5-history-api",
3-
"version": "4.1.3",
3+
"version": "4.1.4",
44
"description": "HTML5 History API expansion for browsers not supporting pushState, replaceState",
55
"main": "history.js",
66
"repository": {

0 commit comments

Comments
 (0)