diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-09-03 19:28:50 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-09-03 19:28:50 +0200 |
| commit | 589c423f3d2d4d65347fbd074b71cc067541c477 (patch) | |
| tree | 9524ca5c159517c7d206e8aa41212ae1d5921db3 /StoneIsland/www/js/lib/blogs/StoryView.js | |
| parent | c73bf06dff4921b20f344a9cbb91b9b88f4546eb (diff) | |
actually get scrolling working!
Diffstat (limited to 'StoneIsland/www/js/lib/blogs/StoryView.js')
| -rwxr-xr-x | StoneIsland/www/js/lib/blogs/StoryView.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StoneIsland/www/js/lib/blogs/StoryView.js b/StoneIsland/www/js/lib/blogs/StoryView.js index dae79cb9..0b3b17d7 100755 --- a/StoneIsland/www/js/lib/blogs/StoryView.js +++ b/StoneIsland/www/js/lib/blogs/StoryView.js @@ -41,7 +41,7 @@ var StoryView = ScrollableView.extend({ var li = document.createElement("li") li.dataset.id = row.id li.innerHTML = row.title - li.role = "button" + li.setAttribute('role', "link") this.sections[row.id] = row this.$links.append(li) this.$content.append(t) |
