diff --git a/app/static/js/ascroll.js b/app/static/js/ascroll.js index 87bc4f2..7dc4aa5 100644 --- a/app/static/js/ascroll.js +++ b/app/static/js/ascroll.js @@ -205,8 +205,9 @@ async function loadClips(annotations) { } previous = annotation }) - annotations[annotations.length - 1].color2 = annotations[0].color1 - console.log(annotations) + if (annotations.length) { + annotations[annotations.length - 1].color2 = annotations[0].color1 + } return annotations }) } @@ -236,11 +237,8 @@ function loadItem(config) { var first var info = formatInfo(config, ascroll) var annotations = response.data.layers[config.layer].filter(annotation => { - if (config.user && annotation.user != config.user) { - return true - } + return !(config.user && annotation.user != config.user) }) - loadClips(annotations).then(annotations => { annotations.forEach(annotation => { var div = document.createElement('div')