2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00

fix deletion of outdated user keys

This commit is contained in:
Frederik Ring 2019-09-10 09:17:04 +02:00
parent 5656a3df7d
commit 564ff3ad30
4 changed files with 4 additions and 6 deletions

View File

@ -1 +0,0 @@
www.offen.dev

View File

@ -43,4 +43,3 @@ DIRECT_TEMPLATES = []
GITHUB_ORG = 'https://github.com/offen' GITHUB_ORG = 'https://github.com/offen'
CONTACT_EMAIL = 'mail@offen.dev' CONTACT_EMAIL = 'mail@offen.dev'
PATREON_URL = 'https://www.patreon.com/bePatron?u=21484999' PATREON_URL = 'https://www.patreon.com/bePatron?u=21484999'
AUDITORIUM_SCRIPT = 'http://localhost:8080/auditorium/index.js'

View File

@ -1,8 +1,8 @@
;(function ($) { ;(function ($) {
$(document).ready(function () { $(document).ready(function () {
$(window).scroll(function () { $(window).scroll(function () {
var scrollProgress = parseInt($(window).scrollTop(), 10)
if ($(window).width() > 960) { if ($(window).width() > 960) {
var scrollProgress = parseInt($(window).scrollTop(), 10)
$('body.index .brand').css('opacity', Math.min(scrollProgress / 100, 1)) $('body.index .brand').css('opacity', Math.min(scrollProgress / 100, 1))
} }
}) })