1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Source: libjs-cssrelpreload
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Yadd <yadd@debian.org>
Build-Depends: debhelper-compat (= 13)
, dh-sequence-nodejs
, uglifyjs
Standards-Version: 4.6.0
Vcs-Browser: https://salsa.debian.org/js-team/libjs-cssrelpreload
Vcs-Git: https://salsa.debian.org/js-team/libjs-cssrelpreload.git
Homepage: https://github.com/filamentgroup/loadCSS
Rules-Requires-Root: no
Package: libjs-cssrelpreload
Architecture: all
Depends: ${misc:Depends}
, ${shlibs:Depends}
Recommends: javascript-common
Provides: libjs-loadcss
, ${nodejs:Provides}
Multi-Arch: foreign
Description: JavaScript to load CSS asynchronously
This JavaScript library provides functions to load CSS asynchronously.
.
Referencing CSS stylesheets with link[rel=stylesheet] or @import causes
browsers to delay page rendering while a stylesheet loads. When loading
stylesheets that are not critical to the initial rendering of a page, this
blocking behavior is undesirable. The new <link rel="preload"> standard
enables loading stylesheets asynchronously, without blocking rendering, and
loadCSS provides a JavaScript polyfill for that feature to allow it to work
across browsers, as well as providing its own JavaScript method for loading
stylesheets.
|