Skip to content

Commit c35055a

Browse files
committed
fixed indentation
1 parent d710ec0 commit c35055a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

‎jquery-patterns/cache-selector.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!doctype html>
22
<htmllang="en">
33
<head>
44
<title>JavaScript Patterns</title>

‎jquery-patterns/window-scroll-event.html‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!doctype html>
22
<htmllang="en">
33
<head>
44
<title>JavaScript Patterns</title>
@@ -13,18 +13,18 @@
1313

1414
// preferred
1515
varouterPane=$details.find(".details-pane-outer"),
16-
didScroll=false;
16+
didScroll=false;
1717
$(window).scroll(function(){
18-
didScroll=true;
18+
didScroll=true;
1919
});
2020

2121
setInterval(function(){
22-
if(didScroll){
23-
didScroll=false;
24-
// Check your page position and then
25-
// Load in more results
26-
// outerPane.html();
27-
}
22+
if(didScroll){
23+
didScroll=false;
24+
// Check your page position and then
25+
// Load in more results
26+
// outerPane.html();
27+
}
2828
},250);
2929

3030
// reference

0 commit comments

Comments
(0)