mirror of https://github.com/zulip/zulip.git
80 lines
2.5 KiB
JavaScript
80 lines
2.5 KiB
JavaScript
|
// this will either smooth scroll to an anchor where the `name`
|
||
|
// is the same as the `scroll-to` reference, or to a px height
|
||
|
// (as specified like `scroll-to='0px'`).
|
||
|
var ScrollTo = function () {
|
||
|
$("[scroll-to]").click(function () {
|
||
|
var sel = $(this).attr("scroll-to");
|
||
|
|
||
|
// if the `scroll-to` is a parse-able pixel value like `50px`,
|
||
|
// then use that as the scrollTop, else assume it is a selector name
|
||
|
// and find the `offsetTop`.
|
||
|
var top = /\dpx/.test(sel) ?
|
||
|
parseInt(sel, 10) :
|
||
|
$("[name='" + sel + "']").offset().top;
|
||
|
|
||
|
$("body").animate({ scrollTop: top + "px" }, 300);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
var events = function () {
|
||
|
ScrollTo();
|
||
|
|
||
|
$("a").click(function (e) {
|
||
|
// if the pathname is different than what we are already on, run the
|
||
|
// custom transition function.
|
||
|
if (window.location.pathname !== this.pathname && !this.hasAttribute("download")) {
|
||
|
e.preventDefault();
|
||
|
$(".portico-landing").removeClass("show");
|
||
|
setTimeout(function () {
|
||
|
window.location.href = $(this).attr("href");
|
||
|
}.bind(this), 500);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// get the location url like `zulipchat.com/features/`, cut off the trailing
|
||
|
// `/` and then split by `/` to get ["zulipchat.com", "features"], then
|
||
|
// pop the last element to get the current section (eg. `features`).
|
||
|
var location = window.location.href.replace(/\/#*$/, "").split(/\//).pop();
|
||
|
|
||
|
$("[on-page='" + location + "']").addClass("active");
|
||
|
|
||
|
$("body").click(function (e) {
|
||
|
var $e = $(e.target);
|
||
|
|
||
|
var should_close = !$e.is("ul, #hamburger") && $e.closest("ul, #hamburger").length === 0;
|
||
|
|
||
|
// this means that it is in mobile sidebar mode.
|
||
|
if ($("nav ul").height() === window.innerHeight && should_close) {
|
||
|
$("nav ul").removeClass("show");
|
||
|
}
|
||
|
});
|
||
|
|
||
|
$("#hamburger").click(function () {
|
||
|
$("nav ul").addClass("show");
|
||
|
});
|
||
|
|
||
|
};
|
||
|
|
||
|
// run this callback when the page is determined to have loaded.
|
||
|
var load = function () {
|
||
|
// show the .portico-landing when the document is loaded.
|
||
|
setTimeout(function () {
|
||
|
$(".portico-landing").addClass("show");
|
||
|
}, 200);
|
||
|
|
||
|
// display the `x-grad` element a second after load so that the slide up
|
||
|
// transition on the .portico-landing is nice and smooth.
|
||
|
setTimeout(function () {
|
||
|
$("x-grad").addClass("show");
|
||
|
}, 1000);
|
||
|
|
||
|
// Set events.
|
||
|
events();
|
||
|
};
|
||
|
|
||
|
if (document.readyState === "complete") {
|
||
|
load();
|
||
|
} else {
|
||
|
$(document).ready(load);
|
||
|
}
|