bump: 3.6.4

This commit is contained in:
qingwei.li 2017-04-28 08:03:49 +08:00
parent 76c041ad48
commit 890d29f982
3 changed files with 9 additions and 4 deletions

View File

@ -1,12 +1,17 @@
# Changelog
## 3.6.4 / 2017-04-28
* fix(util): correctly clean up duplicate slashes, fixed ([#153](https://github.com/QingWei-Li/docsify/issues/153)
## 3.6.3 / 2017-04-25
* fix(external-script): script attrs
## 3.6.2/ 2017-04-12
* feat(external-script): detect more than one script dom, fixed #146
* feat(external-script): detect more than one script dom, fixed ([#146](https://github.com/QingWei-Li/docsify/issues/146)
* GA: Send hash instead of complete href (#147)
## 3.6.1 / 2017-04-09

View File

@ -314,7 +314,7 @@ var getParentPath = cached(function (path) {
});
var cleanPath = cached(function (path) {
return path.replace(/\/+/g, '/')
return path.replace(/([^:])\/{2,}/g, '$1/')
});
function replaceHash (path) {

4
lib/docsify.min.js vendored

File diff suppressed because one or more lines are too long