Se tunea Redmine para tener una página de inicio solo para usuarios anónimos
This commit is contained in:
parent
d2fc48bda8
commit
3c31ac4771
26 changed files with 3910 additions and 15 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue