Compare commits

...
3 Commits
Author SHA1 Message Date
qingwei.li 538ee3d0dc chore: add changelog 4.3.10 2017-10-12 22:51:32 +08:00
qingwei.li 49fd30d73d [build] 4.3.10 2017-10-12 22:51:30 +08:00
LaySentandqingwei.li abd885e133 fix: link render issue after page refreshing (#276)
* fix scroll issue in IE

* add meta tag for IE browser

* fix link render issue after page refreshing
2017-10-12 22:48:07 +08:00
9 changed files with 23 additions and 9 deletions
+10
View File
@@ -1,3 +1,13 @@
<a name="4.3.10"></a>
## [4.3.10](https://github.com/QingWei-Li/docsify/compare/v4.3.9...v4.3.10) (2017-10-12)
### Bug Fixes
* link render issue after page refreshing ([#276](https://github.com/QingWei-Li/docsify/issues/276)) ([abd885e](https://github.com/QingWei-Li/docsify/commit/abd885e))
<a name="4.3.9"></a>
## [4.3.9](https://github.com/QingWei-Li/docsify/compare/v4.3.8...v4.3.9) (2017-10-11)
+1 -1
View File
@@ -1,6 +1,6 @@
![logo](_media/icon.svg)
# docsify <small>4.3.9</small>
# docsify <small>4.3.10</small>
> A magical documentation site generator.
+4 -2
View File
@@ -3643,7 +3643,9 @@ var HashHistory = (function (History$$1) {
path = route.path + stringifyQuery(route.query);
path = path.replace(/\.md(\?)|\.md$/, '$1');
if (local) { path = currentRoute + path; }
if (local) {
path = currentRoute.substr(0, currentRoute.indexOf('?')) + path;
}
return cleanPath('#/' + path)
};
@@ -3979,7 +3981,7 @@ initGlobalAPI();
/**
* Version
*/
Docsify.version = '4.3.9';
Docsify.version = '4.3.10';
/**
* Run Docsify
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "docsify",
"version": "4.3.9",
"version": "4.3.10",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "docsify",
"version": "4.3.9",
"version": "4.3.10",
"description": "A magical documentation generator.",
"author": {
"name": "qingwei-li",
+1 -1
View File
@@ -37,5 +37,5 @@
"integrity": "sha1-6DWIAbhrg7F1YNTjw4LXrvIQCUQ="
}
},
"version": "4.3.9"
"version": "4.3.10"
}
@@ -1,6 +1,6 @@
{
"name": "docsify-server-renderer",
"version": "4.3.9",
"version": "4.3.10",
"description": "docsify server renderer",
"author": {
"name": "qingwei-li",
+3 -1
View File
@@ -80,7 +80,9 @@ export class HashHistory extends History {
path = route.path + stringifyQuery(route.query)
path = path.replace(/\.md(\?)|\.md$/, '$1')
if (local) path = currentRoute + path
if (local) {
path = currentRoute.substr(0, currentRoute.indexOf('?')) + path
}
return cleanPath('#/' + path)
}