aboutsummaryrefslogtreecommitdiff
path: root/assets/js/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/main.js')
-rwxr-xr-xassets/js/main.js13
1 files changed, 2 insertions, 11 deletions
diff --git a/assets/js/main.js b/assets/js/main.js
index 14bae8f..42ff881 100755
--- a/assets/js/main.js
+++ b/assets/js/main.js
@@ -209,15 +209,6 @@ $(() => {
RenderDayTimeChart(AverageWatchTimeOccurrence);
RenderMostWatchedChart(SortedTitleOccurrenceCounter, TitleWatchTime);
RenderHeatmap(HeatmapDates);
-
- // create scroll events
- new Waypoint({
- element: $("canvas#MostWatchedChart"),
- handler: direction => {
- $("canvas#MostWatchedChart").fadeTo(1000, direction === "down" ? 1 : 0);
- },
- offset: $("canvas#MostWatchedChart").height()
- });
}
/**
@@ -374,11 +365,11 @@ $(() => {
type: "POST"
}).done(result => {
const TopInformation = JSON.parse(result);
- $(".MostWatchedOverview .MostWatchedPoster").attr(
+ $(".MostWatchedOverview > .MostWatchedPoster").attr(
"src",
`https://image.tmdb.org/t/p/w300${TopInformation.poster_path}`
);
- $(".MostWatchedOverview .OverviewText .Description").text(
+ $(".MostWatchedOverview > .Description").text(
TopInformation.overview
);
console.log(TopInformation);