Skip to content

Commit

Permalink
Automated commit at 2024-05-28 18:25:15 UTC by middleman-deploy 2.0.0…
Browse files Browse the repository at this point in the history
…-alpha
  • Loading branch information
evmorov committed May 28, 2024
0 parents commit ca81104
Show file tree
Hide file tree
Showing 35 changed files with 103,389 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
288 changes: 288 additions & 0 deletions assets/bootstrap/glyphicons-halflings-regular-de51a849.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3,965 changes: 3,965 additions & 0 deletions index.html

Large diffs are not rendered by default.

4,319 changes: 4,319 additions & 0 deletions java-java/index.html

Large diffs are not rendered by default.

3,982 changes: 3,982 additions & 0 deletions java-javascript/index.html

Large diffs are not rendered by default.

4,026 changes: 4,026 additions & 0 deletions java-php/index.html

Large diffs are not rendered by default.

4,240 changes: 4,240 additions & 0 deletions java-python/index.html

Large diffs are not rendered by default.

4,348 changes: 4,348 additions & 0 deletions java-ruby/index.html

Large diffs are not rendered by default.

3,982 changes: 3,982 additions & 0 deletions javascript-java/index.html

Large diffs are not rendered by default.

3,436 changes: 3,436 additions & 0 deletions javascript-javascript/index.html

Large diffs are not rendered by default.

3,670 changes: 3,670 additions & 0 deletions javascript-php/index.html

Large diffs are not rendered by default.

3,751 changes: 3,751 additions & 0 deletions javascript-python/index.html

Large diffs are not rendered by default.

3,859 changes: 3,859 additions & 0 deletions javascript-ruby/index.html

Large diffs are not rendered by default.

111 changes: 111 additions & 0 deletions javascripts/all-091923e6.js

Large diffs are not rendered by default.

48 changes: 48 additions & 0 deletions javascripts/main
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
(function() {
var scroll;

if ($(window).height() + 100 < $(document).height()) {
$('#top-link-block').removeClass('hidden').affix({
offset: {
top: 1100
}
});
}

scroll = function(element, toTop) {
if (toTop == null) {
toTop = false;
}
return $(element).click(function(event) {
var href;
event.preventDefault();
href = $.attr(this, 'href');
$('html, body').animate({
scrollTop: $(href).offset().top
}, 400, function() {
window.location.hash = toTop ? '' : href;
});
return false;
});
};

scroll('a.scrollTop', true);

scroll('a.scroll');

$('.lang-item').click(function(e) {
var langUrl1, langUrl2, rootUrl, side1, side2, targetUrl;
langUrl1 = $(this).data('lang-url');
side1 = $(this).parent().parent().data('lang-side');
side2 = side1 === 1 ? 2 : 1;
langUrl2 = $("div[data-lang-side='" + side2 + "']").find('span.lang-selected').data('lang-url');
targetUrl = side1 === 1 ? "/" + langUrl1 + "-" + langUrl2 : "/" + langUrl2 + "-" + langUrl1;
rootUrl = $('#root-url').html();
if (rootUrl !== '/') {
targetUrl = "" + rootUrl + targetUrl;
}
window.location.href = targetUrl;
e.preventDefault();
});

}).call(this);
Loading

0 comments on commit ca81104

Please sign in to comment.