File tree 3 files changed +20
-5
lines changed
3 files changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ export function fetchMixin (proto) {
85
85
path = cover === true ? '_coverpage.md' : cover
86
86
}
87
87
88
+ this . coverEnable = ! ! path
88
89
if ( path ) {
89
90
path = this . router . getFile ( root + path )
90
91
this . coverIsHTML = / \. h t m l $ / g. test ( path )
@@ -98,12 +99,21 @@ export function fetchMixin (proto) {
98
99
}
99
100
100
101
proto . $fetch = function ( cb = noop ) {
101
- this . _fetchCover ( )
102
- this . _fetch ( result => {
103
- this . $resetEvents ( )
102
+ const done = ( ) => {
104
103
callHook ( this , 'doneEach' )
105
104
cb ( )
106
- } )
105
+ }
106
+
107
+ this . _fetchCover ( )
108
+
109
+ if ( this . coverEnable && this . config . onlyCover ) {
110
+ done ( )
111
+ } else {
112
+ this . _fetch ( result => {
113
+ this . $resetEvents ( )
114
+ done ( )
115
+ } )
116
+ }
107
117
}
108
118
}
109
119
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ function renderMain (html) {
38
38
html = 'not found'
39
39
}
40
40
41
+ dom . toggleClass ( dom . getNode ( 'main' ) , 'add' , 'ready' )
41
42
this . _renderTo ( '.markdown-section' , html )
42
43
// Render sidebar with the TOC
43
44
! this . config . loadSidebar && this . _renderSidebar ( )
Original file line number Diff line number Diff line change @@ -217,12 +217,16 @@ li input[type='checkbox'] {
217
217
218
218
/* main */
219
219
main {
220
- display : block ;
220
+ display : none ;
221
221
position : relative;
222
222
size : 100vw 100% ;
223
223
z-index : 0 ;
224
224
}
225
225
226
+ main .ready {
227
+ display : block;
228
+ }
229
+
226
230
.anchor {
227
231
display : inline-block;
228
232
text-decoration : none;
You can’t perform that action at this time.
0 commit comments