"javascript" renamed to "js"

This commit is contained in:
dcoppa 2016-05-30 08:22:54 +00:00
parent fc2035f145
commit bd5c5e0b0d
3 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,78 @@
/*!
* freetype2.js
*
* auxiliary JavaScript functions for freetype.org
*
* written 2012 by Werner Lemberg
*/
// This code snippet needs `jquery'
// (http://code.jquery.com/jquery-1.8.3.js) and `jquery-resize'
// (http://github.com/cowboy/jquery-resize/raw/master/jquery.ba-resize.js)
// Add a bottom bar if the document length exceeds the window height.
// Additionally ensure that the TOC background reaches the bottom of the
// window.
function addBottomBar() {
var columnHeight = $('.colright').height();
var topBarHeight = $('#top').height();
var winHeight = $(window).height();
if (columnHeight + topBarHeight > winHeight) {
$('#TOC-bottom').css('height', columnHeight);
/* add bottom bar if it doesn't exist already */
if ($('#bottom').length == 0) {
$('body').append('<div class="bar" id="bottom"></div>');
}
}
else {
$('#TOC-bottom').css('height', winHeight - topBarHeight);
$('#bottom').remove();
}
}
// `Slightly' scroll the TOC so that its top moves up to the top of the
// screen if we scroll down. The function also assures that the bottom of
// the TOC doesn't cover the bottom bar (e.g., if the window height is very
// small).
function adjustTOCPosition() {
var docHeight = $(document).height();
var TOCHeight = $('#TOC').height();
var bottomBarHeight = $('#bottom').height();
var topBarHeight = $('#top').height();
var scrollTopPos = $(window).scrollTop();
var topBarBottomPos = 0 + topBarHeight;
var bottomBarTopPos = docHeight - bottomBarHeight;
if (scrollTopPos >= topBarBottomPos) {
$('#TOC').css('top', 0);
}
if (scrollTopPos < topBarBottomPos) {
$('#TOC').css('top', topBarBottomPos - scrollTopPos);
}
if (bottomBarTopPos - scrollTopPos < TOCHeight)
$('#TOC').css('top', bottomBarTopPos - scrollTopPos - TOCHeight);
}
// Hook functions into loading, resizing, and scrolling events.
$(window).load(function() {
addBottomBar();
adjustTOCPosition();
$(window).scroll(function() {
adjustTOCPosition();
});
$('#TOC-bottom').add(window).resize(function() {
addBottomBar();
});
});
/* end of freetype2.js */

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,9 @@
/*
* jQuery resize event - v1.1 - 3/14/2010
* http://benalman.com/projects/jquery-resize-plugin/
*
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
*/
(function($,h,c){var a=$([]),e=$.resize=$.extend($.resize,{}),i,k="setTimeout",j="resize",d=j+"-special-event",b="delay",f="throttleWindow";e[b]=250;e[f]=true;$.event.special[j]={setup:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.add(l);$.data(this,d,{w:l.width(),h:l.height()});if(a.length===1){g()}},teardown:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.not(l);l.removeData(d);if(!a.length){clearTimeout(i)}},add:function(l){if(!e[f]&&this[k]){return false}var n;function m(s,o,p){var q=$(this),r=$.data(this,d);r.w=o!==c?o:q.width();r.h=p!==c?p:q.height();n.apply(this,arguments)}if($.isFunction(l)){n=l;return m}else{n=l.handler;l.handler=m}}};function g(){i=h[k](function(){a.each(function(){var n=$(this),m=n.width(),l=n.height(),o=$.data(this,d);if(m!==o.w||l!==o.h){n.trigger(j,[o.w=m,o.h=l])}});g()},e[b])}})(jQuery,this);