Skip to content

Commit ac83ec1

Browse files
committed
format source
1 parent 4650a6d commit ac83ec1

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/js/05-tabset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ find('.doc .tabset').forEach(function (tabset) {
2929

3030
if (activeTabList) {
3131
if (queueData.length > 0) {
32-
if (window.innerWidth > smallBreak && (tab.parentNode.childElementCount > tabOnLargeScreen - 1)) {
32+
if (window.innerWidth > smallBreak && tab.parentNode.childElementCount > tabOnLargeScreen - 1) {
3333
tab.parentNode.parentNode.insertAdjacentHTML(
3434
'beforeend',
3535
/*eslint max-len: ["error", { "code": 180 }]*/

src/js/08-contributor-bot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
.slice(0)
6262
.reverse()
6363
.map(function (contributor, index, arrayobj) {
64-
//show only top 5 contributor
64+
//show only top 5 contributor
6565
if (index <= 4) {
6666
var contributorAvtar = contributor.author.avatar_url
6767
// var contributorTotalCommit = contributor.total

src/js/10-landing-page-nav.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
;
2-
(function () {
1+
;(function () {
32
'use strict'
43
// for slide toggle
54
if (document.querySelector('.tutorials-filter')) {

0 commit comments

Comments
 (0)