This repository was archived by the owner on Mar 2, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,6 @@ A watcher has been added to the component to render the details dynamically when
211
211
value: details .forks
212
212
}
213
213
];
214
- console .log (this .githubURL .slice (0 , 8 ) + ' api.' + this .githubURL .slice (8 , 18 ) + ' /repos' + this .githubURL .slice (18 ) + ' /contents/README.md' );
215
214
const splitTime = time =>
216
215
time && typeof time === ' string' ? time .split (' T' )[0 ] : undefined ;
217
216
this .stats = [
@@ -255,9 +254,10 @@ A watcher has been added to the component to render the details dynamically when
255
254
this .css_dependencies = result .data .css_dependencies ;
256
255
const url = ` ${ API_URL } details/${ this .name } ` ;
257
256
console .log (this .sniper_data );
257
+
258
258
axios ({
259
259
method: ' GET' ,
260
- url: this . githubURL . slice ( 0 , 8 ) + ' api.' + this . githubURL . slice ( 8 , 18 ) + ' /repos' + this .githubURL .slice (18 ) + ' /contents/README.md'
260
+ url: ` https:// api.github.com /repos/ ${ this .githubURL .slice (19 ) } /contents/README.md`
261
261
}).then (
262
262
result => {
263
263
this .readme = result .data .content ;
@@ -443,6 +443,11 @@ A watcher has been added to the component to render the details dynamically when
443
443
// margin-top: -20px;
444
444
color : rgba (0 , 0 , 0 , 0.7 );
445
445
}
446
+ #readme {
447
+ * {
448
+ overflow-x : auto ;
449
+ }
450
+ }
446
451
#biojsio {
447
452
width : 80% ;
448
453
border-radius : 3px ;
Original file line number Diff line number Diff line change 12
12
<h1 id =" bio" >Bio</h1 ><h1 id =" js" >JS</h1 >
13
13
</div >
14
14
<router-link class =" navLink" to =" /components" ><span >Components</span ></router-link >
15
- <a class =" navLink" href = " https://edu.biojs.net/ " ><span >Guide</span ></a >
15
+ <router-link class =" navLink" to = " /guide " ><span >Guide</span ></router-link >
16
16
<router-link class =" navLink" to =" /about" ><span >About</span ></router-link >
17
17
<router-link class =" navLink" to =" /contact" ><span >Contact Us</span ></router-link >
18
18
<div class =" close" >
You can’t perform that action at this time.
0 commit comments