Se tunea Redmine para tener una página de inicio solo para usuarios anónimos

This commit is contained in:
Manuel Cillero 2018-12-08 16:02:49 +01:00
parent d2fc48bda8
commit 3c31ac4771
26 changed files with 3910 additions and 15 deletions

View file

@ -66,6 +66,16 @@ if (window.jQuery) {
$("a").filter(function() {
return this.hostname && this.hostname !== location.hostname;
}).addClass("external").attr("target", "_blank");
});
// Scroll to top:
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('#scrollup').fadeIn();
} else {
$('#scrollup').fadeOut();
}
});
} else {
document.observe("dom:loaded", function() {