mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-11-30 11:08:58 +08:00
bump: 3.0.1
This commit is contained in:
parent
cd99b522e7
commit
4419b2119e
@ -1,4 +1,9 @@
|
||||
|
||||
3.0.1 / 2017-02-19
|
||||
==================
|
||||
|
||||
* fix(route): empty alias
|
||||
|
||||
3.0.0 / 2017-02-19
|
||||
==================
|
||||
|
||||
|
@ -3258,7 +3258,7 @@ function routeMixin (proto) {
|
||||
var config = ref.config;
|
||||
var base = getBasePath(config.basePath);
|
||||
|
||||
path = getAlias(path, config.alias);
|
||||
path = config.alias ? getAlias(path, config.alias) : path;
|
||||
path = getFileName(path);
|
||||
path = path === '/README.md' ? (config.homepage || path) : path;
|
||||
path = isAbsolutePath(path) ? path : getPath(base, path);
|
||||
|
4
lib/docsify.min.js
vendored
4
lib/docsify.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user