mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
fix deletion of outdated user keys
This commit is contained in:
parent
5656a3df7d
commit
564ff3ad30
@ -1 +0,0 @@
|
||||
www.offen.dev
|
@ -43,4 +43,3 @@ DIRECT_TEMPLATES = []
|
||||
GITHUB_ORG = 'https://github.com/offen'
|
||||
CONTACT_EMAIL = 'mail@offen.dev'
|
||||
PATREON_URL = 'https://www.patreon.com/bePatron?u=21484999'
|
||||
AUDITORIUM_SCRIPT = 'http://localhost:8080/auditorium/index.js'
|
||||
|
@ -1,10 +1,10 @@
|
||||
;(function ($) {
|
||||
$(document).ready(function () {
|
||||
$(window).scroll(function () {
|
||||
var scrollProgress = parseInt($(window).scrollTop(), 10)
|
||||
if ($(window).width() > 960) {
|
||||
$('body.index .brand').css('opacity', Math.min(scrollProgress / 100, 1))
|
||||
}
|
||||
if ($(window).width() > 960) {
|
||||
var scrollProgress = parseInt($(window).scrollTop(), 10)
|
||||
$('body.index .brand').css('opacity', Math.min(scrollProgress / 100, 1))
|
||||
}
|
||||
})
|
||||
})
|
||||
})(window.jQuery)
|
||||
|
Loading…
Reference in New Issue
Block a user