Skip to content
Snippets Groups Projects
Commit 03a11ac1 authored by alexisben's avatar alexisben
Browse files

fix js

parent 25f3117d
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,8 @@ class BlockTimeline {
constructor (block) {
this.block = block;
this.content = this.block.querySelector('.timeline');
this.list = this.block.querySelector('.events ol');
this.items = this.list.querySelectorAll('.event');
this.list = this.block.querySelector('.timeline-events ol');
this.items = this.list.querySelectorAll('.timeline-event');
this.previous = this.block.querySelector('.previous');
this.next = this.block.querySelector('.next');
this.isManipulated = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment