Skip to content

Commit 0677be3

Browse files
committed
fix "diff --check" whitespace anomalies
These aren't hurting anything functional, but they may make future diffs more noisy. Let's clean them up now.
1 parent 492f105 commit 0677be3

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

app/assets/javascripts/application.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,8 @@ var AboutContent = {
368368
// Scroll to Top
369369
$('#scrollToTop').removeClass('no-js');
370370
$(window).scroll(function() {
371-
$(this).scrollTop() > 150
372-
? $('#scrollToTop').fadeIn()
371+
$(this).scrollTop() > 150
372+
? $('#scrollToTop').fadeIn()
373373
: $('#scrollToTop').fadeOut();
374374
});
375375
$('#scrollToTop').click(function(e) {

app/assets/stylesheets/layout.scss

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ table.benchmarks {
404404
}
405405
}
406406
}
407-
// scrollToTop
407+
// scrollToTop
408408
.scrollToTop {
409409
@include border-radius(50px);
410410
display: none;
@@ -445,7 +445,7 @@ table.benchmarks {
445445
}
446446
}
447447
}
448-
.no-js{
448+
.no-js{
449449
&.scrollToTop {
450450
display: block;
451451
}
@@ -466,7 +466,7 @@ table.benchmarks {
466466
#content { width: 100%; }
467467
.inner { width: 100%; }
468468
#content-wrapper { padding: 0.8rem; }
469-
469+
470470
#masthead {
471471
height: unset;
472472
.inner {
@@ -545,19 +545,19 @@ table.benchmarks {
545545
width: 100%;
546546
max-width: 300px;
547547
}
548-
.unstyled {
548+
.unstyled {
549549
a {
550550
padding: 0.15rem 0;
551551
display: block;
552552
}
553-
}
553+
}
554554
.chapter{
555555
h2 {
556556
display: flex;
557-
align-items: center;
557+
align-items: center;
558558
a { padding-left: 5px; }
559559
}
560-
ol {
560+
ol {
561561
li {
562562
display: flex;
563563
align-items: center;

app/assets/stylesheets/sidebar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ aside.sidebar.active {
5252
border: none;
5353
left: 0;
5454
width: 1.6rem;
55-
&:focus + .sidebar {
55+
&:focus + .sidebar {
5656
@include responsive-sidebar-ui;
5757
}
5858
}

app/views/about/_small_and_fast.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
</tbody>
138138
</table>
139139
</div>
140-
140+
141141
<p>
142142
It's also interesting to note that the size of the data on the client side
143143
is very similar even though Git also has every version of every file for the

app/views/shared/_sidebar.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<button class="sidebar-btn"></button>
2-
<aside class="sidebar" id="sidebar">
2+
<aside class="sidebar" id="sidebar">
33
<nav>
44
<ul>
55
<li>

0 commit comments

Comments
 (0)