parent
e31701787e
commit
7051c2b595
4 changed files with 44 additions and 17 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
- Update smooth-scroll.js to `v16.1.2`. [#2430](https://github.com/mmistakes/minimal-mistakes/issues/2430)
|
||||||
|
|
||||||
## [4.19.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.0)
|
## [4.19.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.0)
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
5
assets/js/main.min.js
vendored
5
assets/js/main.min.js
vendored
File diff suppressed because one or more lines are too long
40
assets/js/plugins/smooth-scroll.js
vendored
40
assets/js/plugins/smooth-scroll.js
vendored
|
@ -1,7 +1,7 @@
|
||||||
/*!
|
/*!
|
||||||
* smooth-scroll v15.2.1
|
* smooth-scroll v16.1.2
|
||||||
* Animate scrolling to anchor links
|
* Animate scrolling to anchor links
|
||||||
* (c) 2019 Chris Ferdinandi
|
* (c) 2020 Chris Ferdinandi
|
||||||
* MIT License
|
* MIT License
|
||||||
* http://github.com/cferdinandi/smooth-scroll
|
* http://github.com/cferdinandi/smooth-scroll
|
||||||
*/
|
*/
|
||||||
|
@ -90,7 +90,7 @@
|
||||||
* Check to see if user prefers reduced motion
|
* Check to see if user prefers reduced motion
|
||||||
* @param {Object} settings Script settings
|
* @param {Object} settings Script settings
|
||||||
*/
|
*/
|
||||||
var reduceMotion = function (settings) {
|
var reduceMotion = function () {
|
||||||
if ('matchMedia' in window && window.matchMedia('(prefers-reduced-motion)').matches) {
|
if ('matchMedia' in window && window.matchMedia('(prefers-reduced-motion)').matches) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -486,6 +486,12 @@
|
||||||
// Update the URL
|
// Update the URL
|
||||||
updateURL(anchor, isNum, _settings);
|
updateURL(anchor, isNum, _settings);
|
||||||
|
|
||||||
|
// If the user prefers reduced motion, jump to location
|
||||||
|
if (reduceMotion()) {
|
||||||
|
window.scrollTo(0, Math.floor(endLocation));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Emit a custom event
|
// Emit a custom event
|
||||||
emitEvent('scrollStart', _settings, anchor, toggle);
|
emitEvent('scrollStart', _settings, anchor, toggle);
|
||||||
|
|
||||||
|
@ -500,11 +506,12 @@
|
||||||
*/
|
*/
|
||||||
var clickHandler = function (event) {
|
var clickHandler = function (event) {
|
||||||
|
|
||||||
// Don't run if the user prefers reduced motion
|
// Don't run if event was canceled but still bubbled up
|
||||||
if (reduceMotion(settings)) return;
|
// By @mgreter - https://github.com/cferdinandi/smooth-scroll/pull/462/
|
||||||
|
if (event.defaultPrevented) return;
|
||||||
|
|
||||||
// Don't run if right-click or command/control + click
|
// Don't run if right-click or command/control + click or shift + click
|
||||||
if (event.button !== 0 || event.metaKey || event.ctrlKey) return;
|
if (event.button !== 0 || event.metaKey || event.ctrlKey || event.shiftKey) return;
|
||||||
|
|
||||||
// Check if event.target has closest() method
|
// Check if event.target has closest() method
|
||||||
// By @totegi - https://github.com/cferdinandi/smooth-scroll/pull/401/
|
// By @totegi - https://github.com/cferdinandi/smooth-scroll/pull/401/
|
||||||
|
@ -518,10 +525,21 @@
|
||||||
if (toggle.hostname !== window.location.hostname || toggle.pathname !== window.location.pathname || !/#/.test(toggle.href)) return;
|
if (toggle.hostname !== window.location.hostname || toggle.pathname !== window.location.pathname || !/#/.test(toggle.href)) return;
|
||||||
|
|
||||||
// Get an escaped version of the hash
|
// Get an escaped version of the hash
|
||||||
var hash = escapeCharacters(toggle.hash);
|
var hash;
|
||||||
|
try {
|
||||||
|
hash = escapeCharacters(decodeURIComponent(toggle.hash));
|
||||||
|
} catch(e) {
|
||||||
|
hash = escapeCharacters(toggle.hash);
|
||||||
|
}
|
||||||
|
|
||||||
// Get the anchored element
|
// Get the anchored element
|
||||||
var anchor = settings.topOnEmptyHash && hash === '#' ? document.documentElement : document.querySelector(hash);
|
var anchor;
|
||||||
|
if (hash === '#') {
|
||||||
|
if (!settings.topOnEmptyHash) return;
|
||||||
|
anchor = document.documentElement;
|
||||||
|
} else {
|
||||||
|
anchor = document.querySelector(hash);
|
||||||
|
}
|
||||||
anchor = !anchor && hash === '#top' ? document.documentElement : anchor;
|
anchor = !anchor && hash === '#top' ? document.documentElement : anchor;
|
||||||
|
|
||||||
// If anchored element exists, scroll to it
|
// If anchored element exists, scroll to it
|
||||||
|
@ -589,7 +607,7 @@
|
||||||
* Initialize Smooth Scroll
|
* Initialize Smooth Scroll
|
||||||
* @param {Object} options User settings
|
* @param {Object} options User settings
|
||||||
*/
|
*/
|
||||||
smoothScroll.init = function (options) {
|
var init = function () {
|
||||||
|
|
||||||
// feature test
|
// feature test
|
||||||
if (!supports()) throw 'Smooth Scroll: This browser does not support the required JavaScript methods and browser APIs.';
|
if (!supports()) throw 'Smooth Scroll: This browser does not support the required JavaScript methods and browser APIs.';
|
||||||
|
@ -616,7 +634,7 @@
|
||||||
// Initialize plugin
|
// Initialize plugin
|
||||||
//
|
//
|
||||||
|
|
||||||
smoothScroll.init(options);
|
init();
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -5,10 +5,16 @@ permalink: /docs/history/
|
||||||
excerpt: "Change log of enhancements and bug fixes made to the theme."
|
excerpt: "Change log of enhancements and bug fixes made to the theme."
|
||||||
sidebar:
|
sidebar:
|
||||||
nav: docs
|
nav: docs
|
||||||
last_modified_at: 2020-03-10T19:02:48-04:00
|
last_modified_at: 2020-03-11T13:13:31-04:00
|
||||||
toc: false
|
toc: false
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
- Update smooth-scroll.js to `v16.1.2`. [#2430](https://github.com/mmistakes/minimal-mistakes/issues/2430)
|
||||||
|
|
||||||
## [4.19.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.0)
|
## [4.19.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.0)
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
Loading…
Reference in a new issue