File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ \section{Sortable Lists}\label{s:pages-sort-list}
357
357
358
358
\begin {minted }{js}
359
359
const sortLists = () => {
360
- const allLists = Array.from(document.querySelectorAll('#sorted'))
360
+ const lists = Array.from(document.querySelectorAll('#sorted'))
361
361
lists.forEach((list) => {
362
362
const children = Array.from(list.childNodes)
363
363
.filter(c => c.nodeName !== '#text' )
@@ -535,7 +535,7 @@ \section{Bibliographic Citations}\label{s:pages-citations}
535
535
</p>
536
536
<hr/>
537
537
<p><em>Visit <a href="http://somewhere.org"> the author's site</a>.</em></p>
538
-
538
+
539
539
</body>
540
540
</html>
541
541
\end {minted}
Original file line number Diff line number Diff line change 1
1
const sortLists = ( ) => {
2
- const allLists = Array . from ( document . querySelectorAll ( '#sorted' ) )
2
+ const lists = Array . from ( document . querySelectorAll ( '#sorted' ) )
3
3
lists . forEach ( ( list ) => {
4
4
const children = Array . from ( list . childNodes )
5
5
. filter ( c => c . nodeName !== '#text' )
You can’t perform that action at this time.
0 commit comments