mirror of
https://github.com/wahyd4/docsify.git
synced 2026-08-09 05:16:06 +10:00
[build] 4.0.2 next
This commit is contained in:
+19
-16
@@ -79,7 +79,8 @@ var config = merge({
|
||||
ga: '',
|
||||
mergeNavbar: false,
|
||||
formatUpdated: '',
|
||||
externalLinkTarget: '_blank'
|
||||
externalLinkTarget: '_blank',
|
||||
routerModel: 'hash'
|
||||
}, window.$docsify);
|
||||
|
||||
var script = document.currentScript ||
|
||||
@@ -3311,6 +3312,8 @@ History.prototype.getBasePath = function getBasePath () {
|
||||
};
|
||||
|
||||
History.prototype.getFile = function getFile (path) {
|
||||
path = path || this.getCurrentPath();
|
||||
|
||||
var ref = this;
|
||||
var config = ref.config;
|
||||
var base = this.getBasePath();
|
||||
@@ -3411,7 +3414,11 @@ var HashHistory = (function (History$$1) {
|
||||
path = path.slice(hashIndex + 1);
|
||||
}
|
||||
|
||||
return { path: path, query: parseQuery(query) }
|
||||
return {
|
||||
path: path,
|
||||
file: this.getFile(path),
|
||||
query: parseQuery(query)
|
||||
}
|
||||
};
|
||||
|
||||
HashHistory.prototype.toURL = function toURL (path, params, currentRoute) {
|
||||
@@ -3441,7 +3448,7 @@ var HTML5History = (function (History$$1) {
|
||||
HTML5History.prototype.constructor = HTML5History;
|
||||
|
||||
HTML5History.prototype.getCurrentPath = function getCurrentPath () {
|
||||
var base = this.config.basePath;
|
||||
var base = this.getBasePath();
|
||||
var path = window.location.pathname;
|
||||
|
||||
if (base && path.indexOf(base) === 0) {
|
||||
@@ -3470,15 +3477,6 @@ var HTML5History = (function (History$$1) {
|
||||
on('popstate', cb);
|
||||
};
|
||||
|
||||
HTML5History.prototype.normalize = function normalize () {
|
||||
var path = this.getCurrentPath();
|
||||
|
||||
path = path.replace('#', '?id=');
|
||||
window.history.pushState({ key: path }, '', path);
|
||||
|
||||
return path
|
||||
};
|
||||
|
||||
/**
|
||||
* Parse the url
|
||||
* @param {string} [path=location.href]
|
||||
@@ -3495,12 +3493,18 @@ var HTML5History = (function (History$$1) {
|
||||
path = path.slice(0, queryIndex);
|
||||
}
|
||||
|
||||
var baseIndex = path.indexOf(location.origin);
|
||||
var base = getPath(location.origin, this.getBasePath());
|
||||
var baseIndex = path.indexOf(base);
|
||||
|
||||
if (baseIndex > -1) {
|
||||
path = path.slice(baseIndex + location.origin.length);
|
||||
path = path.slice(baseIndex + base.length - 1);
|
||||
}
|
||||
|
||||
return { path: path, query: parseQuery(query) }
|
||||
return {
|
||||
path: path,
|
||||
file: this.getFile(path),
|
||||
query: parseQuery(query)
|
||||
}
|
||||
};
|
||||
|
||||
HTML5History.prototype.toURL = function toURL (path, params, currentRoute) {
|
||||
@@ -3630,7 +3634,6 @@ function fetchMixin (proto) {
|
||||
var root = getParentPath(this.route.path);
|
||||
var path = this.router.getFile(root + coverpage);
|
||||
|
||||
console.log(this.route.path, root, path);
|
||||
if (this.route.path !== '/' || !coverpage) {
|
||||
this._renderCover();
|
||||
return
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "docsify-server-renderer",
|
||||
"version": "4.0.1",
|
||||
"version": "4.0.2",
|
||||
"description": "docsify server renderer",
|
||||
"author": {
|
||||
"name": "qingwei-li",
|
||||
|
||||
Reference in New Issue
Block a user