bump: 3.4.1

This commit is contained in:
qingwei.li 2017-03-10 12:02:23 +08:00
parent d1d8f88a1a
commit 5f07d5a9f3
7 changed files with 10 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# 3.3.1 / 2017-03-10
# 3.4.1 / 2017-03-10
* fix(dom): Disable the dom cache when vue is present, fixed [#119](https://github.com/QingWei-Li/docsify/issues/119)
* update english docs, [@jrappen](https://github.com/jrappen)

View File

@ -161,6 +161,9 @@ function getNode (el, noCache) {
if ( noCache === void 0 ) noCache = false;
if (typeof el === 'string') {
if (typeof window.Vue !== 'undefined') {
return find(el)
}
el = noCache ? find(el) : (cacheNode[el] || (cacheNode[el] = find(el)));
}

4
lib/docsify.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long