mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
7 lines
547 B
JavaScript
7 lines
547 B
JavaScript
|
/*!
|
||
|
* headroom.js v0.7.0 - Give your page some headroom. Hide your header until you need it
|
||
|
* Copyright (c) 2014 Nick Williams - http://wicky.nillia.ms/headroom.js
|
||
|
* License: MIT
|
||
|
*/
|
||
|
|
||
|
!function(a){a&&(a.fn.headroom=function(b){return this.each(function(){var c=a(this),d=c.data("headroom"),e="object"==typeof b&&b;e=a.extend(!0,{},Headroom.options,e),d||(d=new Headroom(this,e),d.init(),c.data("headroom",d)),"string"==typeof b&&d[b]()})},a("[data-headroom]").each(function(){var b=a(this);b.headroom(b.data())}))}(window.Zepto||window.jQuery);
|