[build] 4.1.10

This commit is contained in:
qingwei.li 2017-06-02 17:57:56 +08:00
commit 75381cf046
No known key found for this signature in database
GPG key ID: B6DDC2F7AE80B2F4
4 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
![logo](_media/icon.svg)
# docsify <small>4.1.9</small>
# docsify <small>4.1.10</small>
> A magical documentation site generator.

View file

@ -3403,17 +3403,17 @@ var HashHistory = (function (History$$1) {
var query = '';
var hashIndex = path.indexOf('#');
if (hashIndex) {
path = path.slice(hashIndex + 1);
}
var queryIndex = path.indexOf('?');
if (queryIndex >= 0) {
query = path.slice(queryIndex + 1);
path = path.slice(0, queryIndex);
}
var hashIndex = path.indexOf('#');
if (hashIndex) {
path = path.slice(hashIndex + 1);
}
return {
path: path,
file: this.getFile(path),
@ -3743,7 +3743,7 @@ initGlobalAPI();
/**
* Version
*/
Docsify.version = '4.1.8';
Docsify.version = '4.1.10';
/**
* Run Docsify

2
lib/docsify.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "docsify-server-renderer",
"version": "4.1.8",
"version": "4.1.10",
"description": "docsify server renderer",
"author": {
"name": "qingwei-li",