mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Tried to rework type safety
This commit is contained in:
parent
af4db15a27
commit
07e2eb4f85
2
.flowconfig
Normal file
2
.flowconfig
Normal file
@ -0,0 +1,2 @@
|
||||
[ignore]
|
||||
<PROJECT_ROOT>/node_modules
|
@ -145,6 +145,12 @@ gulp.task("assets:images:clean",
|
||||
* JavaScript
|
||||
* ------------------------------------------------------------------------- */
|
||||
|
||||
/*
|
||||
* Annotate javascript
|
||||
*/
|
||||
gulp.task("assets:javascripts:flow:annotate",
|
||||
load("assets/javascripts/flow/annotate"))
|
||||
|
||||
/*
|
||||
* Build application logic
|
||||
*/
|
||||
|
53
lib/tasks/assets/javascripts/flow/annotate.js
Normal file
53
lib/tasks/assets/javascripts/flow/annotate.js
Normal file
@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to
|
||||
* deal in the Software without restriction, including without limitation the
|
||||
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
* sell copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
import jsdoc2flow from "flow-jsdoc"
|
||||
import through from "through2"
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Task: lint JavaScript
|
||||
* ------------------------------------------------------------------------- */
|
||||
|
||||
export default (gulp, config) => {
|
||||
return () => {
|
||||
return gulp.src(`${config.assets.src}/javascripts/**/*.{js,jsx}`)
|
||||
|
||||
/* Linting */
|
||||
.pipe(
|
||||
through.obj(function(file, enc, done) {
|
||||
if (file.isNull() || file.isStream())
|
||||
return done()
|
||||
|
||||
/* Annotate contents */
|
||||
file.contents = new Buffer(jsdoc2flow(
|
||||
`/* @flow */\n\n${file.contents.toString()}`
|
||||
).toString())
|
||||
|
||||
/* Push file to next stage */
|
||||
this.push(file)
|
||||
done()
|
||||
}))
|
||||
|
||||
/* Print errors */
|
||||
.pipe(gulp.dest("tmp/javascripts"))
|
||||
}
|
||||
}
|
@ -55,11 +55,6 @@ export default (gulp, config) => {
|
||||
file.eslint.results[0].filePath =
|
||||
path.relative(process.cwd(), file.path)
|
||||
|
||||
// const contents = `/* @flow */\n\n${file.contents.toString()}`
|
||||
// const flowJsdoc = require("flow-jsdoc")
|
||||
// const annotatedContents = flowJsdoc(contents)
|
||||
// console.log(annotatedContents)
|
||||
|
||||
/* Push file to next stage */
|
||||
this.push(file)
|
||||
done()
|
||||
|
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="352" height="448" viewBox="0 0 352 448" id="bitbucket"><path fill="currentColor" d="M203.75 214.75q2 15.75-12.625 25.25t-27.875 1.5q-9.75-4.25-13.375-14.5t-.125-20.5 13-14.5q9-4.5 18.125-3t16 8.875 6.875 16.875zm27.75-5.25q-3.5-26.75-28.25-41T154 165.25q-15.75 7-25.125 22.125t-8.625 32.375q1 22.75 19.375 38.75t41.375 14q22.75-2 38-21t12.5-42zM291.25 74q-5-6.75-14-11.125t-14.5-5.5T245 54.25q-72.75-11.75-141.5.5-10.75 1.75-16.5 3t-13.75 5.5T60.75 74q7.5 7 19 11.375t18.375 5.5T120 93.75Q177 101 232 94q15.75-2 22.375-3t18.125-5.375T291.25 74zm14.25 258.75q-2 6.5-3.875 19.125t-3.5 21-7.125 17.5-14.5 14.125q-21.5 12-47.375 17.875t-50.5 5.5-50.375-4.625q-11.5-2-20.375-4.5T88.75 412 70.5 401.125t-13-15.375q-6.25-24-14.25-73l1.5-4 4.5-2.25q55.75 37 126.625 37t126.875-37q5.25 1.5 6 5.75t-1.25 11.25-2 9.25zM350.75 92.5q-6.5 41.75-27.75 163.75-1.25 7.5-6.75 14t-10.875 10T291.75 288q-63 31.5-152.5 22-62-6.75-98.5-34.75-3.75-3-6.375-6.625t-4.25-8.75-2.25-8.5-1.5-9.875T25 232.75q-2.25-12.5-6.625-37.5t-7-40.375T5.5 118 0 78.5Q.75 72 4.375 66.375T12.25 57t11.25-7.5T35 43.875t12-4.625q31.25-11.5 78.25-16 94.75-9.25 169 12.5Q333 47.25 348 66.25q4 5 4.125 12.75t-1.375 13.5z"/></svg>
|
Before Width: | Height: | Size: 1.2 KiB |
20
material/assets/images/icons/bitbucket.svg
Normal file
20
material/assets/images/icons/bitbucket.svg
Normal file
@ -0,0 +1,20 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="352" height="448"
|
||||
viewBox="0 0 352 448" id="bitbucket">
|
||||
<path fill="currentColor" d="M203.75 214.75q2 15.75-12.625 25.25t-27.875
|
||||
1.5q-9.75-4.25-13.375-14.5t-0.125-20.5 13-14.5q9-4.5 18.125-3t16 8.875
|
||||
6.875 16.875zM231.5 209.5q-3.5-26.75-28.25-41t-49.25-3.25q-15.75
|
||||
7-25.125 22.125t-8.625 32.375q1 22.75 19.375 38.75t41.375 14q22.75-2
|
||||
38-21t12.5-42zM291.25
|
||||
74q-5-6.75-14-11.125t-14.5-5.5-17.75-3.125q-72.75-11.75-141.5 0.5-10.75
|
||||
1.75-16.5 3t-13.75 5.5-12.5 10.75q7.5 7 19 11.375t18.375 5.5 21.875
|
||||
2.875q57 7.25 112 0.25 15.75-2 22.375-3t18.125-5.375 18.75-11.625zM305.5
|
||||
332.75q-2 6.5-3.875 19.125t-3.5 21-7.125 17.5-14.5 14.125q-21.5
|
||||
12-47.375 17.875t-50.5 5.5-50.375-4.625q-11.5-2-20.375-4.5t-19.125-6.75-18.25-10.875-13-15.375q-6.25-24-14.25-73l1.5-4
|
||||
4.5-2.25q55.75 37 126.625 37t126.875-37q5.25 1.5 6 5.75t-1.25 11.25-2
|
||||
9.25zM350.75 92.5q-6.5 41.75-27.75 163.75-1.25 7.5-6.75 14t-10.875
|
||||
10-13.625 7.75q-63 31.5-152.5
|
||||
22-62-6.75-98.5-34.75-3.75-3-6.375-6.625t-4.25-8.75-2.25-8.5-1.5-9.875-1.375-8.75q-2.25-12.5-6.625-37.5t-7-40.375-5.875-36.875-5.5-39.5q0.75-6.5
|
||||
4.375-12.125t7.875-9.375 11.25-7.5 11.5-5.625 12-4.625q31.25-11.5
|
||||
78.25-16 94.75-9.25 169 12.5 38.75 11.5 53.75 30.5 4 5 4.125
|
||||
12.75t-1.375 13.5z" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
|
Before Width: | Height: | Size: 991 B |
18
material/assets/images/icons/github.svg
Normal file
18
material/assets/images/icons/github.svg
Normal file
@ -0,0 +1,18 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448"
|
||||
viewBox="0 0 416 448" id="github">
|
||||
<path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19-18.125
|
||||
8.5-18.125-8.5-10.75-19-3.125-20.5 3.125-20.5 10.75-19 18.125-8.5
|
||||
18.125 8.5 10.75 19 3.125 20.5zM320 304q0 10-3.125 20.5t-10.75
|
||||
19-18.125 8.5-18.125-8.5-10.75-19-3.125-20.5 3.125-20.5 10.75-19
|
||||
18.125-8.5 18.125 8.5 10.75 19 3.125 20.5zM360
|
||||
304q0-30-17.25-51t-46.75-21q-10.25 0-48.75 5.25-17.75 2.75-39.25
|
||||
2.75t-39.25-2.75q-38-5.25-48.75-5.25-29.5 0-46.75 21t-17.25 51q0 22 8
|
||||
38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0
|
||||
37.25-1.75t35-7.375 30.5-15 20.25-25.75 8-38.375zM416 260q0 51.75-15.25
|
||||
82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5-41.75
|
||||
1.125q-19.5 0-35.5-0.75t-36.875-3.125-38.125-7.5-34.25-12.875-30.25-20.25-21.5-28.75q-15.5-30.75-15.5-82.75
|
||||
0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25
|
||||
30.875q36.75-8.75 77.25-8.75 37 0 70 8 26.25-20.5
|
||||
46.75-30.25t47.25-9.75q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34
|
||||
99.5z" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500" id="gitlab"><path fill="currentColor" d="M93.667 473.347l90.684-279.097H2.983l90.684 279.097z" transform="translate(156.198 1.16)"/><path fill="currentColor" d="M221.333 473.345L130.649 194.25H3.557l217.776 279.095z" transform="translate(28.531 1.16)" opacity=".7"/><path fill="currentColor" d="M32 195.155L4.441 279.97a18.773 18.773 0 0 0 6.821 20.99l238.514 173.29L32 195.155z" transform="translate(.089 .256)" opacity=".5"/><path fill="currentColor" d="M2.667-84.844h127.092L75.14-252.942c-2.811-8.649-15.047-8.649-17.856 0L2.667-84.844z" transform="translate(29.422 280.256)"/><path fill="currentColor" d="M2.667 473.345L93.351 194.25h127.092L2.667 473.345z" transform="translate(247.198 1.16)" opacity=".7"/><path fill="currentColor" d="M221.334 195.155l27.559 84.815a18.772 18.772 0 0 1-6.821 20.99L3.557 474.25l217.777-279.095z" transform="translate(246.307 .256)" opacity=".5"/><path fill="currentColor" d="M130.667-84.844H3.575l54.618-168.098c2.811-8.649 15.047-8.649 17.856 0l54.618 168.098z" transform="translate(336.974 280.256)"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
38
material/assets/images/icons/gitlab.svg
Normal file
38
material/assets/images/icons/gitlab.svg
Normal file
@ -0,0 +1,38 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500"
|
||||
viewBox="0 0 500 500" id="gitlab">
|
||||
<g transform="translate(156.197863, 1.160267)">
|
||||
<path fill="currentColor"
|
||||
d="M93.667,473.347L93.667,473.347l90.684-279.097H2.983L93.667,
|
||||
473.347L93.667,473.347z" />
|
||||
</g>
|
||||
<g transform="translate(28.531199, 1.160800)" opacity="0.7">
|
||||
<path fill="currentColor"
|
||||
d="M221.333,473.345L130.649,194.25H3.557L221.333,473.345L221.333,
|
||||
473.345z" />
|
||||
</g>
|
||||
<g transform="translate(0.088533, 0.255867)" opacity="0.5">
|
||||
<path fill="currentColor"
|
||||
d="M32,195.155L32,195.155L4.441,279.97c-2.513,7.735,0.24,16.21,6.821,
|
||||
20.99l238.514,173.29 L32,195.155L32,195.155z" />
|
||||
</g>
|
||||
<g transform="translate(29.421866, 280.255593)">
|
||||
<path fill="currentColor"
|
||||
d="M2.667-84.844h127.092L75.14-252.942c-2.811-8.649-15.047-8.649-17.856,
|
||||
0L2.667-84.844 L2.667-84.844z" />
|
||||
</g>
|
||||
<g transform="translate(247.197860, 1.160800)" opacity="0.7">
|
||||
<path fill="currentColor"
|
||||
d="M2.667,473.345L93.351,194.25h127.092L2.667,473.345L2.667,
|
||||
473.345z" />
|
||||
</g>
|
||||
<g transform="translate(246.307061, 0.255867)" opacity="0.5">
|
||||
<path fill="currentColor"
|
||||
d="M221.334,195.155L221.334,195.155l27.559,84.815c2.514,7.735-0.24,
|
||||
16.21-6.821,20.99 L3.557,474.25L221.334,195.155L221.334,195.155z" />
|
||||
</g>
|
||||
<g transform="translate(336.973725, 280.255593)">
|
||||
<path fill="currentColor"
|
||||
d="M130.667-84.844H3.575l54.618-168.098c2.811-8.649,15.047-8.649,
|
||||
17.856,0L130.667-84.844 L130.667-84.844z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
File diff suppressed because one or more lines are too long
@ -274,8 +274,8 @@ module.exports = function (it) {
|
||||
|
||||
|
||||
var anObject = __webpack_require__(2),
|
||||
IE8_DOM_DEFINE = __webpack_require__(42),
|
||||
toPrimitive = __webpack_require__(62),
|
||||
IE8_DOM_DEFINE = __webpack_require__(43),
|
||||
toPrimitive = __webpack_require__(63),
|
||||
dP = Object.defineProperty;
|
||||
|
||||
exports.f = __webpack_require__(5) ? Object.defineProperty : function defineProperty(O, P, Attributes) {
|
||||
@ -415,7 +415,7 @@ module.exports = function (it) {
|
||||
|
||||
|
||||
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
||||
var IObject = __webpack_require__(44),
|
||||
var IObject = __webpack_require__(45),
|
||||
defined = __webpack_require__(15);
|
||||
module.exports = function (it) {
|
||||
return IObject(defined(it));
|
||||
@ -620,9 +620,9 @@ var LIBRARY = __webpack_require__(28),
|
||||
hide = __webpack_require__(3),
|
||||
has = __webpack_require__(6),
|
||||
Iterators = __webpack_require__(7),
|
||||
$iterCreate = __webpack_require__(47),
|
||||
$iterCreate = __webpack_require__(48),
|
||||
setToStringTag = __webpack_require__(17),
|
||||
getPrototypeOf = __webpack_require__(53),
|
||||
getPrototypeOf = __webpack_require__(54),
|
||||
ITERATOR = __webpack_require__(0)('iterator'),
|
||||
BUGGY = !([].keys && 'next' in [].keys()) // Safari has buggy iterators w/o `next`
|
||||
,
|
||||
@ -746,7 +746,7 @@ module.exports = function (key) {
|
||||
|
||||
|
||||
var ctx = __webpack_require__(10),
|
||||
invoke = __webpack_require__(43),
|
||||
invoke = __webpack_require__(44),
|
||||
html = __webpack_require__(26),
|
||||
cel = __webpack_require__(16),
|
||||
global = __webpack_require__(1),
|
||||
@ -841,6 +841,119 @@ module.exports = function (it) {
|
||||
|
||||
/***/ }),
|
||||
/* 33 */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
/*
|
||||
* Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to
|
||||
* deal in the Software without restriction, including without limitation the
|
||||
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
* sell copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Class
|
||||
* ------------------------------------------------------------------------- */
|
||||
|
||||
var Listener = function () {
|
||||
|
||||
/**
|
||||
* Generic event listener
|
||||
*
|
||||
* @constructor
|
||||
* @property {(HTMLCollection<HTMLElement>)} els_ - Event targets
|
||||
* @property {Object} handler_- Event handlers
|
||||
* @property {Array<string>} events_ - Event names
|
||||
* @property {Function} update_ - Update handler
|
||||
* @param {?(string|EventTarget|HTMLCollection<HTMLElement>)} els -
|
||||
* Selector or Event targets
|
||||
* @param {(string|Array<string>)} events - Event names
|
||||
* @param {(Object|Function)} handler - Handler to be invoked
|
||||
*/
|
||||
function Listener(els, events, handler) {
|
||||
var _this = this;
|
||||
|
||||
_classCallCheck(this, Listener);
|
||||
|
||||
this.els_ = Array.prototype.slice.call(typeof els === "string" ? document.querySelectorAll(els) : [els]);
|
||||
console.log(this.els_);
|
||||
|
||||
/* Set handler as function or directly as object */
|
||||
this.handler_ = typeof handler === "function" ? { update: handler } : handler;
|
||||
|
||||
/* Initialize event names and update handler */
|
||||
this.events_ = [].concat(events);
|
||||
this.update_ = function (ev) {
|
||||
return _this.handler_.update(ev);
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Register listener for all relevant events
|
||||
*/
|
||||
|
||||
|
||||
_createClass(Listener, [{
|
||||
key: "listen",
|
||||
value: function listen() {
|
||||
var _this2 = this;
|
||||
|
||||
this.els_.forEach(function (el) {
|
||||
_this2.events_.forEach(function (event) {
|
||||
el.addEventListener(event, _this2.update_, false);
|
||||
});
|
||||
});
|
||||
|
||||
/* Execute setup handler, if implemented */
|
||||
if (typeof this.handler_.setup === "function") this.handler_.setup();
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregister listener for all relevant events
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: "unlisten",
|
||||
value: function unlisten() {
|
||||
var _this3 = this;
|
||||
|
||||
this.els_.forEach(function (el) {
|
||||
_this3.events_.forEach(function (event) {
|
||||
el.removeEventListener(event, _this3.update_);
|
||||
});
|
||||
});
|
||||
|
||||
/* Execute reset handler, if implemented */
|
||||
if (typeof this.handler_.reset === "function") this.handler_.reset();
|
||||
}
|
||||
}]);
|
||||
|
||||
return Listener;
|
||||
}();
|
||||
|
||||
/* harmony default export */ __webpack_exports__["a"] = Listener;
|
||||
|
||||
/***/ }),
|
||||
/* 34 */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
/* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {/* globals __webpack_amd_options__ */
|
||||
@ -849,20 +962,20 @@ module.exports = __webpack_amd_options__;
|
||||
/* WEBPACK VAR INJECTION */}.call(exports, {}))
|
||||
|
||||
/***/ }),
|
||||
/* 34 */
|
||||
/* 35 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
__webpack_require__(65);
|
||||
__webpack_require__(67);
|
||||
__webpack_require__(68);
|
||||
__webpack_require__(66);
|
||||
__webpack_require__(68);
|
||||
__webpack_require__(69);
|
||||
__webpack_require__(67);
|
||||
module.exports = __webpack_require__(4).Promise;
|
||||
|
||||
/***/ }),
|
||||
/* 35 */
|
||||
/* 36 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -914,7 +1027,7 @@ try {
|
||||
}
|
||||
|
||||
/***/ }),
|
||||
/* 36 */
|
||||
/* 37 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1375,14 +1488,14 @@ try {
|
||||
})(typeof self !== 'undefined' ? self : undefined);
|
||||
|
||||
/***/ }),
|
||||
/* 37 */
|
||||
/* 38 */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_fastclick__ = __webpack_require__(69);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_fastclick__ = __webpack_require__(70);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_fastclick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_fastclick__);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Material__ = __webpack_require__(72);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Material__ = __webpack_require__(73);
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "initialize", function() { return initialize; });
|
||||
/*
|
||||
* Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
||||
@ -1413,6 +1526,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
||||
* Application
|
||||
* ------------------------------------------------------------------------- */
|
||||
|
||||
// TODO ./node_modules/.bin/gulp assets:javascripts:flow:annotate && ./node_modules/.bin/flow check
|
||||
var initialize = function initialize(config) {
|
||||
|
||||
/* Initialize Modernizr and FastClick */
|
||||
@ -1423,11 +1537,6 @@ var initialize = function initialize(config) {
|
||||
return !!navigator.userAgent.match(/(iPad|iPhone|iPod)/g);
|
||||
});
|
||||
|
||||
/* Test for web application context */
|
||||
Modernizr.addTest("standalone", function () {
|
||||
return !!navigator.standalone;
|
||||
});
|
||||
|
||||
/* Attach FastClick to mitigate 300ms delay on touch devices */
|
||||
__WEBPACK_IMPORTED_MODULE_0_fastclick___default.a.attach(document.body);
|
||||
|
||||
@ -1507,7 +1616,7 @@ var initialize = function initialize(config) {
|
||||
/* Listener: close drawer when anchor links are clicked */
|
||||
new __WEBPACK_IMPORTED_MODULE_1__components_Material__["a" /* default */].Event.MatchMedia("(max-width: 959px)", new __WEBPACK_IMPORTED_MODULE_1__components_Material__["a" /* default */].Event.Listener("[data-md-component=navigation] [href^='#']", "click", function () {
|
||||
var toggle = document.querySelector("[data-md-toggle=drawer]");
|
||||
if (toggle.checked) {
|
||||
if (toggle instanceof HTMLInputElement && toggle.checked) {
|
||||
toggle.checked = false;
|
||||
toggle.dispatchEvent(new CustomEvent("change"));
|
||||
}
|
||||
@ -1517,14 +1626,14 @@ var initialize = function initialize(config) {
|
||||
new __WEBPACK_IMPORTED_MODULE_1__components_Material__["a" /* default */].Event.Listener("[data-md-toggle=search]", "change", function (ev) {
|
||||
setTimeout(function (toggle) {
|
||||
var query = document.forms.search.query;
|
||||
if (toggle.checked) query.focus();
|
||||
if (toggle instanceof HTMLInputElement && toggle.checked) query.focus();
|
||||
}, 400, ev.target);
|
||||
}).listen();
|
||||
|
||||
/* Listener: open search on focus */
|
||||
new __WEBPACK_IMPORTED_MODULE_1__components_Material__["a" /* default */].Event.MatchMedia("(min-width: 960px)", new __WEBPACK_IMPORTED_MODULE_1__components_Material__["a" /* default */].Event.Listener(document.forms.search.query, "focus", function () {
|
||||
var toggle = document.querySelector("[data-md-toggle=search]");
|
||||
if (!toggle.checked) {
|
||||
if (toggle instanceof HTMLInputElement && !toggle.checked) {
|
||||
toggle.checked = true;
|
||||
toggle.dispatchEvent(new CustomEvent("change"));
|
||||
}
|
||||
@ -1533,7 +1642,7 @@ var initialize = function initialize(config) {
|
||||
/* Listener: close search when clicking outside */
|
||||
new __WEBPACK_IMPORTED_MODULE_1__components_Material__["a" /* default */].Event.MatchMedia("(min-width: 960px)", new __WEBPACK_IMPORTED_MODULE_1__components_Material__["a" /* default */].Event.Listener(document.body, "click", function () {
|
||||
var toggle = document.querySelector("[data-md-toggle=search]");
|
||||
if (toggle.checked) {
|
||||
if (toggle instanceof HTMLInputElement && toggle.checked) {
|
||||
toggle.checked = false;
|
||||
toggle.dispatchEvent(new CustomEvent("change"));
|
||||
}
|
||||
@ -1544,7 +1653,7 @@ var initialize = function initialize(config) {
|
||||
var code = ev.keyCode || ev.which;
|
||||
if (code === 27) {
|
||||
var toggle = document.querySelector("[data-md-toggle=search]");
|
||||
if (toggle.checked) {
|
||||
if (toggle instanceof HTMLInputElement && toggle.checked) {
|
||||
toggle.checked = false;
|
||||
toggle.dispatchEvent(new CustomEvent("change"));
|
||||
document.forms.search.query.blur();
|
||||
@ -1583,7 +1692,7 @@ var initialize = function initialize(config) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 38 */
|
||||
/* 39 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1598,7 +1707,7 @@ module.exports = function (key) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 39 */
|
||||
/* 40 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1611,7 +1720,7 @@ module.exports = function (it, Constructor, name, forbiddenField) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 40 */
|
||||
/* 41 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1621,7 +1730,7 @@ module.exports = function (it, Constructor, name, forbiddenField) {
|
||||
// true -> Array#includes
|
||||
var toIObject = __webpack_require__(20),
|
||||
toLength = __webpack_require__(32),
|
||||
toIndex = __webpack_require__(60);
|
||||
toIndex = __webpack_require__(61);
|
||||
module.exports = function (IS_INCLUDES) {
|
||||
return function ($this, el, fromIndex) {
|
||||
var O = toIObject($this),
|
||||
@ -1642,18 +1751,18 @@ module.exports = function (IS_INCLUDES) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 41 */
|
||||
/* 42 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
var ctx = __webpack_require__(10),
|
||||
call = __webpack_require__(46),
|
||||
isArrayIter = __webpack_require__(45),
|
||||
call = __webpack_require__(47),
|
||||
isArrayIter = __webpack_require__(46),
|
||||
anObject = __webpack_require__(2),
|
||||
toLength = __webpack_require__(32),
|
||||
getIterFn = __webpack_require__(63),
|
||||
getIterFn = __webpack_require__(64),
|
||||
BREAK = {},
|
||||
RETURN = {};
|
||||
var _exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {
|
||||
@ -1680,7 +1789,7 @@ _exports.BREAK = BREAK;
|
||||
_exports.RETURN = RETURN;
|
||||
|
||||
/***/ }),
|
||||
/* 42 */
|
||||
/* 43 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1693,7 +1802,7 @@ module.exports = !__webpack_require__(5) && !__webpack_require__(25)(function ()
|
||||
});
|
||||
|
||||
/***/ }),
|
||||
/* 43 */
|
||||
/* 44 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1717,7 +1826,7 @@ module.exports = function (fn, args, that) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 44 */
|
||||
/* 45 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1730,7 +1839,7 @@ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 45 */
|
||||
/* 46 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1746,7 +1855,7 @@ module.exports = function (it) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 46 */
|
||||
/* 47 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1766,13 +1875,13 @@ module.exports = function (iterator, fn, value, entries) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 47 */
|
||||
/* 48 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
var create = __webpack_require__(51),
|
||||
var create = __webpack_require__(52),
|
||||
descriptor = __webpack_require__(29),
|
||||
setToStringTag = __webpack_require__(17),
|
||||
IteratorPrototype = {};
|
||||
@ -1788,7 +1897,7 @@ module.exports = function (Constructor, NAME, next) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 48 */
|
||||
/* 49 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1825,7 +1934,7 @@ module.exports = function (exec, skipClosing) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 49 */
|
||||
/* 50 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1836,7 +1945,7 @@ module.exports = function (done, value) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 50 */
|
||||
/* 51 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1911,7 +2020,7 @@ module.exports = function () {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 51 */
|
||||
/* 52 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1919,7 +2028,7 @@ module.exports = function () {
|
||||
|
||||
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
||||
var anObject = __webpack_require__(2),
|
||||
dPs = __webpack_require__(52),
|
||||
dPs = __webpack_require__(53),
|
||||
enumBugKeys = __webpack_require__(23),
|
||||
IE_PROTO = __webpack_require__(18)('IE_PROTO'),
|
||||
Empty = function Empty() {/* empty */},
|
||||
@ -1961,7 +2070,7 @@ module.exports = Object.create || function create(O, Properties) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 52 */
|
||||
/* 53 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1969,7 +2078,7 @@ module.exports = Object.create || function create(O, Properties) {
|
||||
|
||||
var dP = __webpack_require__(12),
|
||||
anObject = __webpack_require__(2),
|
||||
getKeys = __webpack_require__(55);
|
||||
getKeys = __webpack_require__(56);
|
||||
|
||||
module.exports = __webpack_require__(5) ? Object.defineProperties : function defineProperties(O, Properties) {
|
||||
anObject(O);
|
||||
@ -1983,7 +2092,7 @@ module.exports = __webpack_require__(5) ? Object.defineProperties : function def
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 53 */
|
||||
/* 54 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -1991,7 +2100,7 @@ module.exports = __webpack_require__(5) ? Object.defineProperties : function def
|
||||
|
||||
// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
|
||||
var has = __webpack_require__(6),
|
||||
toObject = __webpack_require__(61),
|
||||
toObject = __webpack_require__(62),
|
||||
IE_PROTO = __webpack_require__(18)('IE_PROTO'),
|
||||
ObjectProto = Object.prototype;
|
||||
|
||||
@ -2004,7 +2113,7 @@ module.exports = Object.getPrototypeOf || function (O) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 54 */
|
||||
/* 55 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2012,7 +2121,7 @@ module.exports = Object.getPrototypeOf || function (O) {
|
||||
|
||||
var has = __webpack_require__(6),
|
||||
toIObject = __webpack_require__(20),
|
||||
arrayIndexOf = __webpack_require__(40)(false),
|
||||
arrayIndexOf = __webpack_require__(41)(false),
|
||||
IE_PROTO = __webpack_require__(18)('IE_PROTO');
|
||||
|
||||
module.exports = function (object, names) {
|
||||
@ -2031,14 +2140,14 @@ module.exports = function (object, names) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 55 */
|
||||
/* 56 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
||||
var $keys = __webpack_require__(54),
|
||||
var $keys = __webpack_require__(55),
|
||||
enumBugKeys = __webpack_require__(23);
|
||||
|
||||
module.exports = Object.keys || function keys(O) {
|
||||
@ -2046,7 +2155,7 @@ module.exports = Object.keys || function keys(O) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 56 */
|
||||
/* 57 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2060,7 +2169,7 @@ module.exports = function (target, src, safe) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 57 */
|
||||
/* 58 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2082,7 +2191,7 @@ module.exports = function (KEY) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 58 */
|
||||
/* 59 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2099,7 +2208,7 @@ module.exports = function (O, D) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 59 */
|
||||
/* 60 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2123,7 +2232,7 @@ module.exports = function (TO_STRING) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 60 */
|
||||
/* 61 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2138,7 +2247,7 @@ module.exports = function (index, length) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 61 */
|
||||
/* 62 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2151,7 +2260,7 @@ module.exports = function (it) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 62 */
|
||||
/* 63 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2171,7 +2280,7 @@ module.exports = function (it, S) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 63 */
|
||||
/* 64 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2185,14 +2294,14 @@ module.exports = __webpack_require__(4).getIteratorMethod = function (it) {
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 64 */
|
||||
/* 65 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
var addToUnscopables = __webpack_require__(38),
|
||||
step = __webpack_require__(49),
|
||||
var addToUnscopables = __webpack_require__(39),
|
||||
step = __webpack_require__(50),
|
||||
Iterators = __webpack_require__(7),
|
||||
toIObject = __webpack_require__(20);
|
||||
|
||||
@ -2226,7 +2335,7 @@ addToUnscopables('values');
|
||||
addToUnscopables('entries');
|
||||
|
||||
/***/ }),
|
||||
/* 65 */
|
||||
/* 66 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2243,7 +2352,7 @@ if (test + '' != '[object z]') {
|
||||
}
|
||||
|
||||
/***/ }),
|
||||
/* 66 */
|
||||
/* 67 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -2256,11 +2365,11 @@ var LIBRARY = __webpack_require__(28),
|
||||
$export = __webpack_require__(24),
|
||||
isObject = __webpack_require__(11),
|
||||
aFunction = __webpack_require__(13),
|
||||
anInstance = __webpack_require__(39),
|
||||
forOf = __webpack_require__(41),
|
||||
speciesConstructor = __webpack_require__(58),
|
||||
anInstance = __webpack_require__(40),
|
||||
forOf = __webpack_require__(42),
|
||||
speciesConstructor = __webpack_require__(59),
|
||||
task = __webpack_require__(31).set,
|
||||
microtask = __webpack_require__(50)(),
|
||||
microtask = __webpack_require__(51)(),
|
||||
PROMISE = 'Promise',
|
||||
TypeError = global.TypeError,
|
||||
process = global.process,
|
||||
@ -2458,7 +2567,7 @@ if (!USE_NATIVE) {
|
||||
this._h = 0; // <- rejection state, 0 - default, 1 - handled, 2 - unhandled
|
||||
this._n = false; // <- notify
|
||||
};
|
||||
Internal.prototype = __webpack_require__(56)($Promise.prototype, {
|
||||
Internal.prototype = __webpack_require__(57)($Promise.prototype, {
|
||||
// 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)
|
||||
then: function then(onFulfilled, onRejected) {
|
||||
var reaction = newPromiseCapability(speciesConstructor(this, $Promise));
|
||||
@ -2485,7 +2594,7 @@ if (!USE_NATIVE) {
|
||||
|
||||
$export($export.G + $export.W + $export.F * !USE_NATIVE, { Promise: $Promise });
|
||||
__webpack_require__(17)($Promise, PROMISE);
|
||||
__webpack_require__(57)(PROMISE);
|
||||
__webpack_require__(58)(PROMISE);
|
||||
Wrapper = __webpack_require__(4)[PROMISE];
|
||||
|
||||
// statics
|
||||
@ -2509,7 +2618,7 @@ $export($export.S + $export.F * (LIBRARY || !USE_NATIVE), PROMISE, {
|
||||
return capability.promise;
|
||||
}
|
||||
});
|
||||
$export($export.S + $export.F * !(USE_NATIVE && __webpack_require__(48)(function (iter) {
|
||||
$export($export.S + $export.F * !(USE_NATIVE && __webpack_require__(49)(function (iter) {
|
||||
$Promise.all(iter)['catch'](empty);
|
||||
})), PROMISE, {
|
||||
// 25.4.4.1 Promise.all(iterable)
|
||||
@ -2555,13 +2664,13 @@ $export($export.S + $export.F * !(USE_NATIVE && __webpack_require__(48)(function
|
||||
});
|
||||
|
||||
/***/ }),
|
||||
/* 67 */
|
||||
/* 68 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
var $at = __webpack_require__(59)(true);
|
||||
var $at = __webpack_require__(60)(true);
|
||||
|
||||
// 21.1.3.27 String.prototype[@@iterator]()
|
||||
__webpack_require__(27)(String, 'String', function (iterated) {
|
||||
@ -2579,13 +2688,13 @@ __webpack_require__(27)(String, 'String', function (iterated) {
|
||||
});
|
||||
|
||||
/***/ }),
|
||||
/* 68 */
|
||||
/* 69 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
var $iterators = __webpack_require__(64),
|
||||
var $iterators = __webpack_require__(65),
|
||||
redefine = __webpack_require__(8),
|
||||
global = __webpack_require__(1),
|
||||
hide = __webpack_require__(3),
|
||||
@ -2611,7 +2720,7 @@ for (var collections = ['NodeList', 'DOMTokenList', 'MediaList', 'StyleSheetList
|
||||
}
|
||||
|
||||
/***/ }),
|
||||
/* 69 */
|
||||
/* 70 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -3429,7 +3538,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
||||
return new FastClick(layer, options);
|
||||
};
|
||||
|
||||
if ("function" === 'function' && _typeof(__webpack_require__(33)) === 'object' && __webpack_require__(33)) {
|
||||
if ("function" === 'function' && _typeof(__webpack_require__(34)) === 'object' && __webpack_require__(34)) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
!(__WEBPACK_AMD_DEFINE_RESULT__ = function () {
|
||||
@ -3445,7 +3554,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
||||
})();
|
||||
|
||||
/***/ }),
|
||||
/* 70 */
|
||||
/* 71 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -3607,7 +3716,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
||||
});
|
||||
|
||||
/***/ }),
|
||||
/* 71 */
|
||||
/* 72 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
@ -5581,11 +5690,11 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
||||
})();
|
||||
|
||||
/***/ }),
|
||||
/* 72 */
|
||||
/* 73 */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Material_Event__ = __webpack_require__(73);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Material_Event__ = __webpack_require__(74);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__Material_Nav__ = __webpack_require__(76);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__Material_Search__ = __webpack_require__(80);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__Material_Sidebar__ = __webpack_require__(83);
|
||||
@ -5631,11 +5740,11 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 73 */
|
||||
/* 74 */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Event_Listener__ = __webpack_require__(74);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Event_Listener__ = __webpack_require__(33);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__Event_MatchMedia__ = __webpack_require__(75);
|
||||
/*
|
||||
* Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
||||
@ -5671,118 +5780,12 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
||||
MatchMedia: __WEBPACK_IMPORTED_MODULE_1__Event_MatchMedia__["a" /* default */]
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
/* 74 */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
/*
|
||||
* Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to
|
||||
* deal in the Software without restriction, including without limitation the
|
||||
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
* sell copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Class
|
||||
* ------------------------------------------------------------------------- */
|
||||
|
||||
var Listener = function () {
|
||||
|
||||
/**
|
||||
* Generic event listener
|
||||
*
|
||||
* @constructor
|
||||
* @param {(string|NodeList<HTMLElement>)} els - Selector or HTML elements
|
||||
* @param {Array.<string>} events - Event names
|
||||
* @param {(object|function)} handler - Handler to be invoked
|
||||
*/
|
||||
function Listener(els, events, handler) {
|
||||
var _this = this;
|
||||
|
||||
_classCallCheck(this, Listener);
|
||||
|
||||
this.els_ = typeof els === "string" ? document.querySelectorAll(els) : [].concat(els);
|
||||
|
||||
/* Set handler as function or directly as object */
|
||||
this.handler_ = typeof handler === "function" ? { update: handler } : handler;
|
||||
|
||||
/* Initialize event names and update handler */
|
||||
this.events_ = [].concat(events);
|
||||
this.update_ = function (ev) {
|
||||
return _this.handler_.update(ev);
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Register listener for all relevant events
|
||||
*/
|
||||
|
||||
|
||||
_createClass(Listener, [{
|
||||
key: "listen",
|
||||
value: function listen() {
|
||||
var _this2 = this;
|
||||
|
||||
Array.prototype.forEach.call(this.els_, function (el) {
|
||||
_this2.events_.forEach(function (event) {
|
||||
el.addEventListener(event, _this2.update_, false);
|
||||
});
|
||||
});
|
||||
|
||||
/* Execute setup handler, if implemented */
|
||||
if (typeof this.handler_.setup === "function") this.handler_.setup();
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregister listener for all relevant events
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: "unlisten",
|
||||
value: function unlisten() {
|
||||
var _this3 = this;
|
||||
|
||||
Array.prototype.forEach.call(this.els_, function (el) {
|
||||
_this3.events_.forEach(function (event) {
|
||||
el.removeEventListener(event, _this3.update_);
|
||||
});
|
||||
});
|
||||
|
||||
/* Execute reset handler, if implemented */
|
||||
if (typeof this.handler_.reset === "function") this.handler_.reset();
|
||||
}
|
||||
}]);
|
||||
|
||||
return Listener;
|
||||
}();
|
||||
|
||||
/* harmony default export */ __webpack_exports__["a"] = Listener;
|
||||
|
||||
/***/ }),
|
||||
/* 75 */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Listener__ = __webpack_require__(33);
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
/*
|
||||
@ -5807,6 +5810,8 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
// eslint-disable-line no-unused-vars
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Class
|
||||
* ------------------------------------------------------------------------- */
|
||||
@ -5820,6 +5825,7 @@ var MatchMedia =
|
||||
* switches the given listeners on or off.
|
||||
*
|
||||
* @constructor
|
||||
* @property {Function} handler_ - Media query event handler
|
||||
* @param {string} query - Media query to test for
|
||||
* @param {Listener} listener - Event listener
|
||||
*/
|
||||
@ -5893,7 +5899,6 @@ var _createClass = function () { function defineProperties(target, props) { for
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
/* @flow */
|
||||
/*
|
||||
* Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
||||
*
|
||||
@ -5923,9 +5928,14 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
||||
var Blur = function () {
|
||||
|
||||
/**
|
||||
* Blur anchors within the navigation above current page y-offset
|
||||
* Blur links within the table of contents above current page y-offset
|
||||
*
|
||||
* @constructor
|
||||
* @property {NodeList<HTMLElement>} els_ - Table of contents links
|
||||
* @property {Array<HTMLElement>} anchors_ - Referenced anchor nodes
|
||||
* @property {number} index_ - Current link index
|
||||
* @property {number} offset_ - Current page y-offset
|
||||
* @property {boolean} dir_ - Scroll direction change
|
||||
* @param {(string|NodeList<HTMLElement>)} els - Selector or HTML elements
|
||||
*/
|
||||
function Blur(els) {
|
||||
@ -5941,13 +5951,13 @@ var Blur = function () {
|
||||
this.dir_ = false;
|
||||
|
||||
/* Index anchor node offsets for fast lookup */
|
||||
this.anchors_ = [].map.call(this.els_, function (el) {
|
||||
return document.getElementById(el.hash.substring(1));
|
||||
});
|
||||
this.anchors_ = [].reduce.call(this.els_, function (anchors, el) {
|
||||
return anchors.concat(document.getElementById(el.hash.substring(1)) || []);
|
||||
}, []);
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize anchor states
|
||||
* Initialize blur states
|
||||
*/
|
||||
|
||||
|
||||
@ -5958,7 +5968,7 @@ var Blur = function () {
|
||||
}
|
||||
|
||||
/**
|
||||
* Update anchor states
|
||||
* Update blur states
|
||||
*
|
||||
* Deduct the static offset of the header (56px) and sidebar offset (24px),
|
||||
* see _permalinks.scss for more information.
|
||||
@ -5970,7 +5980,7 @@ var Blur = function () {
|
||||
var offset = window.pageYOffset;
|
||||
var dir = this.offset_ - offset < 0;
|
||||
|
||||
/* Hack: reset index if direction changed, to catch very fast scrolling,
|
||||
/* Hack: reset index if direction changed to catch very fast scrolling,
|
||||
because otherwise we would have to register a timer and that sucks */
|
||||
if (this.dir_ !== dir) this.index_ = dir ? this.index_ = 0 : this.index_ = this.els_.length - 1;
|
||||
|
||||
@ -6006,7 +6016,7 @@ var Blur = function () {
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset anchor states
|
||||
* Reset blur states
|
||||
*/
|
||||
|
||||
}, {
|
||||
@ -6068,12 +6078,13 @@ var Collapse = function () {
|
||||
* Expand or collapse navigation on toggle
|
||||
*
|
||||
* @constructor
|
||||
* @property {HTMLElement} el_ - Navigation list
|
||||
* @param {(string|HTMLElement)} el - Selector or HTML element
|
||||
*/
|
||||
function Collapse(el) {
|
||||
_classCallCheck(this, Collapse);
|
||||
|
||||
this.el_ = typeof el === "string" ? document.querySelector(el) : el;
|
||||
this.el_ = typeof el === "string" ? document.querySelector(el) || new HTMLElement() : el;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -6121,11 +6132,15 @@ var Collapse = function () {
|
||||
|
||||
/* Remove state on end of transition */
|
||||
var end = function end(ev) {
|
||||
ev.target.removeAttribute("data-md-state");
|
||||
ev.target.style.maxHeight = "";
|
||||
var target = ev.target;
|
||||
if (!(target instanceof HTMLElement)) return;
|
||||
|
||||
/* Reset height and state */
|
||||
target.removeAttribute("data-md-state");
|
||||
target.style.maxHeight = "";
|
||||
|
||||
/* Only fire once, so directly remove event listener */
|
||||
ev.target.removeEventListener("transitionend", end);
|
||||
target.removeEventListener("transitionend", end);
|
||||
};
|
||||
this.el_.addEventListener("transitionend", end, false);
|
||||
}
|
||||
@ -6188,6 +6203,7 @@ var Scrolling = function () {
|
||||
* Set overflow scrolling on the current active pane (for iOS)
|
||||
*
|
||||
* @constructor
|
||||
* @property {HTMLElement} el_ - Navigation
|
||||
* @param {(string|HTMLElement)} el - Selector or HTML element
|
||||
*/
|
||||
function Scrolling(el) {
|
||||
@ -6468,7 +6484,7 @@ var Lock = function () {
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* WEBPACK VAR INJECTION */(function(JSX) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lunr__ = __webpack_require__(71);
|
||||
/* WEBPACK VAR INJECTION */(function(JSX) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lunr__ = __webpack_require__(72);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lunr___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lunr__);
|
||||
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
||||
|
||||
@ -6903,7 +6919,7 @@ var Position = function () {
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_js_cookie__ = __webpack_require__(70);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_js_cookie__ = __webpack_require__(71);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_js_cookie___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_js_cookie__);
|
||||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
||||
|
||||
@ -7209,10 +7225,10 @@ var Repository = function () {
|
||||
/* 90 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
__webpack_require__(34);
|
||||
__webpack_require__(35);
|
||||
__webpack_require__(36);
|
||||
module.exports = __webpack_require__(37);
|
||||
__webpack_require__(37);
|
||||
module.exports = __webpack_require__(38);
|
||||
|
||||
|
||||
/***/ })
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -31,12 +31,12 @@
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block libs %}
|
||||
<script src="{{ base_url }}/assets/javascripts/modernizr-56ade86843.js"></script>
|
||||
<script src="{{ base_url }}/assets/javascripts/modernizr.js"></script>
|
||||
{% endblock %}
|
||||
{% block styles %}
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-4b280ca4d9.css">
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application.css">
|
||||
{% if config.extra.palette %}
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-02ce7adcc2.palette.css">
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application.palette.css">
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block fonts %}
|
||||
@ -67,11 +67,11 @@
|
||||
<defs>
|
||||
{% set platform = config.extra.repo_icon or config.repo_url %}
|
||||
{% if "github" in platform %}
|
||||
{% include "assets/images/icons/github-1da075986e.svg" %}
|
||||
{% include "assets/images/icons/github.svg" %}
|
||||
{% elif "gitlab" in platform %}
|
||||
{% include "assets/images/icons/gitlab-5ad3f9f9e5.svg" %}
|
||||
{% include "assets/images/icons/gitlab.svg" %}
|
||||
{% elif "bitbucket" in platform %}
|
||||
{% include "assets/images/icons/bitbucket-670608a71a.svg" %}
|
||||
{% include "assets/images/icons/bitbucket.svg" %}
|
||||
{% endif %}
|
||||
</defs>
|
||||
</svg>
|
||||
@ -124,7 +124,7 @@
|
||||
{% endblock %}
|
||||
</div>
|
||||
{% block scripts %}
|
||||
<script src="{{ base_url }}/assets/javascripts/application-f7ac33b6fb.js"></script>
|
||||
<script src="{{ base_url }}/assets/javascripts/application.js"></script>
|
||||
<script>app.initialize({url:{base:"{{ base_url }}"}})</script>
|
||||
{% for path in extra_javascript %}
|
||||
<script src="{{ path }}"></script>
|
||||
|
@ -27,6 +27,7 @@ import Material from "./components/Material"
|
||||
* Application
|
||||
* ------------------------------------------------------------------------- */
|
||||
|
||||
// TODO ./node_modules/.bin/gulp assets:javascripts:flow:annotate && ./node_modules/.bin/flow check
|
||||
export const initialize = config => {
|
||||
|
||||
/* Initialize Modernizr and FastClick */
|
||||
@ -37,11 +38,6 @@ export const initialize = config => {
|
||||
return !!navigator.userAgent.match(/(iPad|iPhone|iPod)/g)
|
||||
})
|
||||
|
||||
/* Test for web application context */
|
||||
Modernizr.addTest("standalone", () => {
|
||||
return !!navigator.standalone
|
||||
})
|
||||
|
||||
/* Attach FastClick to mitigate 300ms delay on touch devices */
|
||||
FastClick.attach(document.body)
|
||||
|
||||
@ -140,7 +136,7 @@ export const initialize = config => {
|
||||
new Material.Event.Listener("[data-md-component=navigation] [href^='#']",
|
||||
"click", () => {
|
||||
const toggle = document.querySelector("[data-md-toggle=drawer]")
|
||||
if (toggle.checked) {
|
||||
if (toggle instanceof HTMLInputElement && toggle.checked) {
|
||||
toggle.checked = false
|
||||
toggle.dispatchEvent(new CustomEvent("change"))
|
||||
}
|
||||
@ -150,7 +146,7 @@ export const initialize = config => {
|
||||
new Material.Event.Listener("[data-md-toggle=search]", "change", ev => {
|
||||
setTimeout(toggle => {
|
||||
const query = document.forms.search.query
|
||||
if (toggle.checked)
|
||||
if (toggle instanceof HTMLInputElement && toggle.checked)
|
||||
query.focus()
|
||||
}, 400, ev.target)
|
||||
}).listen()
|
||||
@ -159,7 +155,7 @@ export const initialize = config => {
|
||||
new Material.Event.MatchMedia("(min-width: 960px)",
|
||||
new Material.Event.Listener(document.forms.search.query, "focus", () => {
|
||||
const toggle = document.querySelector("[data-md-toggle=search]")
|
||||
if (!toggle.checked) {
|
||||
if (toggle instanceof HTMLInputElement && !toggle.checked) {
|
||||
toggle.checked = true
|
||||
toggle.dispatchEvent(new CustomEvent("change"))
|
||||
}
|
||||
@ -169,7 +165,7 @@ export const initialize = config => {
|
||||
new Material.Event.MatchMedia("(min-width: 960px)",
|
||||
new Material.Event.Listener(document.body, "click", () => {
|
||||
const toggle = document.querySelector("[data-md-toggle=search]")
|
||||
if (toggle.checked) {
|
||||
if (toggle instanceof HTMLInputElement && toggle.checked) {
|
||||
toggle.checked = false
|
||||
toggle.dispatchEvent(new CustomEvent("change"))
|
||||
}
|
||||
@ -180,7 +176,7 @@ export const initialize = config => {
|
||||
const code = ev.keyCode || ev.which
|
||||
if (code === 27) {
|
||||
const toggle = document.querySelector("[data-md-toggle=search]")
|
||||
if (toggle.checked) {
|
||||
if (toggle instanceof HTMLInputElement && toggle.checked) {
|
||||
toggle.checked = false
|
||||
toggle.dispatchEvent(new CustomEvent("change"))
|
||||
document.forms.search.query.blur()
|
||||
|
@ -30,14 +30,22 @@ export default class Listener {
|
||||
* Generic event listener
|
||||
*
|
||||
* @constructor
|
||||
* @param {(string|NodeList<HTMLElement>)} els - Selector or HTML elements
|
||||
* @param {Array.<string>} events - Event names
|
||||
* @param {(object|function)} handler - Handler to be invoked
|
||||
*
|
||||
* @property {(Array<EventTarget>)} els_ - Event targets
|
||||
* @property {Object} handler_- Event handlers
|
||||
* @property {Array<string>} events_ - Event names
|
||||
* @property {Function} update_ - Update handler
|
||||
*
|
||||
* @param {?(string|EventTarget|NodeList<EventTarget>)} els -
|
||||
* Selector or Event targets
|
||||
* @param {(string|Array<string>)} events - Event names
|
||||
* @param {(Object|Function)} handler - Handler to be invoked
|
||||
*/
|
||||
constructor(els, events, handler) {
|
||||
this.els_ = (typeof els === "string")
|
||||
? document.querySelectorAll(els)
|
||||
: [].concat(els)
|
||||
this.els_ = Array.prototype.slice.call(
|
||||
(typeof els === "string")
|
||||
? document.querySelectorAll(els)
|
||||
: [].concat(els))
|
||||
|
||||
/* Set handler as function or directly as object */
|
||||
this.handler_ = typeof handler === "function"
|
||||
@ -53,7 +61,7 @@ export default class Listener {
|
||||
* Register listener for all relevant events
|
||||
*/
|
||||
listen() {
|
||||
Array.prototype.forEach.call(this.els_, el => {
|
||||
this.els_.forEach(el => {
|
||||
this.events_.forEach(event => {
|
||||
el.addEventListener(event, this.update_, false)
|
||||
})
|
||||
@ -68,7 +76,7 @@ export default class Listener {
|
||||
* Unregister listener for all relevant events
|
||||
*/
|
||||
unlisten() {
|
||||
Array.prototype.forEach.call(this.els_, el => {
|
||||
this.els_.forEach(el => {
|
||||
this.events_.forEach(event => {
|
||||
el.removeEventListener(event, this.update_)
|
||||
})
|
||||
|
@ -20,6 +20,8 @@
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
import Listener from "./Listener" // eslint-disable-line no-unused-vars
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Class
|
||||
* ------------------------------------------------------------------------- */
|
||||
@ -33,6 +35,9 @@ export default class MatchMedia {
|
||||
* switches the given listeners on or off.
|
||||
*
|
||||
* @constructor
|
||||
*
|
||||
* @property {Function} handler_ - Media query event handler
|
||||
*
|
||||
* @param {string} query - Media query to test for
|
||||
* @param {Listener} listener - Event listener
|
||||
*/
|
||||
|
@ -27,9 +27,16 @@
|
||||
export default class Blur {
|
||||
|
||||
/**
|
||||
* Blur anchors within the navigation above current page y-offset
|
||||
* Blur links within the table of contents above current page y-offset
|
||||
*
|
||||
* @constructor
|
||||
*
|
||||
* @property {NodeList<HTMLElement>} els_ - Table of contents links
|
||||
* @property {Array<HTMLElement>} anchors_ - Referenced anchor nodes
|
||||
* @property {number} index_ - Current link index
|
||||
* @property {number} offset_ - Current page y-offset
|
||||
* @property {boolean} dir_ - Scroll direction change
|
||||
*
|
||||
* @param {(string|NodeList<HTMLElement>)} els - Selector or HTML elements
|
||||
*/
|
||||
constructor(els) {
|
||||
@ -45,20 +52,21 @@ export default class Blur {
|
||||
this.dir_ = false
|
||||
|
||||
/* Index anchor node offsets for fast lookup */
|
||||
this.anchors_ = [].map.call(this.els_, el => {
|
||||
return document.getElementById(el.hash.substring(1))
|
||||
})
|
||||
this.anchors_ = [].reduce.call(this.els_, (anchors, el) => {
|
||||
return anchors.concat(
|
||||
document.getElementById(el.hash.substring(1)) || [])
|
||||
}, [])
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize anchor states
|
||||
* Initialize blur states
|
||||
*/
|
||||
setup() {
|
||||
this.update()
|
||||
}
|
||||
|
||||
/**
|
||||
* Update anchor states
|
||||
* Update blur states
|
||||
*
|
||||
* Deduct the static offset of the header (56px) and sidebar offset (24px),
|
||||
* see _permalinks.scss for more information.
|
||||
@ -67,7 +75,7 @@ export default class Blur {
|
||||
const offset = window.pageYOffset
|
||||
const dir = this.offset_ - offset < 0
|
||||
|
||||
/* Hack: reset index if direction changed, to catch very fast scrolling,
|
||||
/* Hack: reset index if direction changed to catch very fast scrolling,
|
||||
because otherwise we would have to register a timer and that sucks */
|
||||
if (this.dir_ !== dir)
|
||||
this.index_ = dir
|
||||
@ -109,7 +117,7 @@ export default class Blur {
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset anchor states
|
||||
* Reset blur states
|
||||
*/
|
||||
reset() {
|
||||
Array.prototype.forEach.call(this.els_, el => {
|
||||
|
@ -30,6 +30,9 @@ export default class Collapse {
|
||||
* Expand or collapse navigation on toggle
|
||||
*
|
||||
* @constructor
|
||||
*
|
||||
* @property {HTMLElement} el_ - Navigation list
|
||||
*
|
||||
* @param {(string|HTMLElement)} el - Selector or HTML element
|
||||
*/
|
||||
constructor(el) {
|
||||
@ -75,11 +78,16 @@ export default class Collapse {
|
||||
|
||||
/* Remove state on end of transition */
|
||||
const end = ev => {
|
||||
ev.target.removeAttribute("data-md-state")
|
||||
ev.target.style.maxHeight = ""
|
||||
const target = ev.target
|
||||
if (!(target instanceof HTMLElement))
|
||||
return
|
||||
|
||||
/* Reset height and state */
|
||||
target.removeAttribute("data-md-state")
|
||||
target.style.maxHeight = ""
|
||||
|
||||
/* Only fire once, so directly remove event listener */
|
||||
ev.target.removeEventListener("transitionend", end)
|
||||
target.removeEventListener("transitionend", end)
|
||||
}
|
||||
this.el_.addEventListener("transitionend", end, false)
|
||||
}
|
||||
|
@ -30,6 +30,9 @@ export default class Scrolling {
|
||||
* Set overflow scrolling on the current active pane (for iOS)
|
||||
*
|
||||
* @constructor
|
||||
*
|
||||
* @property {HTMLElement} el_ - Navigation
|
||||
*
|
||||
* @param {(string|HTMLElement)} el - Selector or HTML element
|
||||
*/
|
||||
constructor(el) {
|
||||
|
@ -30,6 +30,10 @@ export default class Lock {
|
||||
* Lock body for full-screen search modal
|
||||
*
|
||||
* @constructor
|
||||
*
|
||||
* @property {HTMLInputElement} el_ - TODO
|
||||
* @property {number} offset_ - TODO
|
||||
*
|
||||
* @param {(string|HTMLElement)} el - Selector or HTML element
|
||||
*/
|
||||
constructor(el) {
|
||||
|
@ -32,8 +32,13 @@ export default class Result {
|
||||
* Perform search and update results on keyboard events
|
||||
*
|
||||
* @constructor
|
||||
*
|
||||
* @property {HTMLElement} el_ - TODO
|
||||
* @property {(Object|Array<Object>|Function)} data_ - TODO (very dirty)
|
||||
* @property {React$Element|HTMLElement} meta_ - TODO
|
||||
*
|
||||
* @param {(string|HTMLElement)} el - Selector or HTML element
|
||||
* @param {(Array.<object>|Function)} data - Promise or array providing data
|
||||
* @param {(Array<Object>|Function)} data - Promise or array providing data // TODO ????
|
||||
*/
|
||||
constructor(el, data) {
|
||||
this.el_ = (typeof el === "string")
|
||||
|
Loading…
Reference in New Issue
Block a user