Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes 17 nov23 #1642

Merged
merged 2 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
469 changes: 257 additions & 212 deletions assets/gallery.html

Large diffs are not rendered by default.

369 changes: 148 additions & 221 deletions chapters/chapter.html

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions chapters/js/vendors/bootstrap.bundle.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions chapters/js/vendors/hammer.js
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,8 @@
input.maxPointers = !session.prevInput
? input.pointers.length
: input.pointers.length > session.prevInput.maxPointers
? input.pointers.length
: session.prevInput.maxPointers;
? input.pointers.length
: session.prevInput.maxPointers;

computeIntervalInputData(session, input);

Expand Down Expand Up @@ -2779,8 +2779,8 @@
typeof window !== "undefined"
? window
: typeof self !== "undefined"
? self
: {}; // jshint ignore:line
? self
: {}; // jshint ignore:line
freeGlobal.Hammer = Hammer;

if (typeof define === "function" && define.amd) {
Expand Down
24 changes: 12 additions & 12 deletions chapters/js/vendors/jquery.easing.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@
return x === 0
? 0
: x === 1
? 1
: x < 0.5
? pow(2, 20 * x - 10) / 2
: (2 - pow(2, -20 * x + 10)) / 2;
? 1
: x < 0.5
? pow(2, 20 * x - 10) / 2
: (2 - pow(2, -20 * x + 10)) / 2;
},
easeInCirc: function (x) {
return 1 - sqrt(1 - pow(x, 2));
Expand All @@ -113,24 +113,24 @@
return x === 0
? 0
: x === 1
? 1
: -pow(2, 10 * x - 10) * sin((x * 10 - 10.75) * c4);
? 1
: -pow(2, 10 * x - 10) * sin((x * 10 - 10.75) * c4);
},
easeOutElastic: function (x) {
return x === 0
? 0
: x === 1
? 1
: pow(2, -10 * x) * sin((x * 10 - 0.75) * c4) + 1;
? 1
: pow(2, -10 * x) * sin((x * 10 - 0.75) * c4) + 1;
},
easeInOutElastic: function (x) {
return x === 0
? 0
: x === 1
? 1
: x < 0.5
? -(pow(2, 20 * x - 10) * sin((20 * x - 11.125) * c5)) / 2
: (pow(2, -20 * x + 10) * sin((20 * x - 11.125) * c5)) / 2 + 1;
? 1
: x < 0.5
? -(pow(2, 20 * x - 10) * sin((20 * x - 11.125) * c5)) / 2
: (pow(2, -20 * x + 10) * sin((20 * x - 11.125) * c5)) / 2 + 1;
},
easeInBack: function (x) {
return c3 * x * x * x - c1 * x * x;
Expand Down
16 changes: 8 additions & 8 deletions chapters/js/vendors/jquery.magnific-popup.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,12 +410,12 @@
"replaceWith" === g
? f[0] !== d[0] && f.replaceWith(d)
: "img" === g
? f.is("img")
? f.attr("src", d)
: f.replaceWith(
a("<img>").attr("src", d).attr("class", f.attr("class"))
)
: f.attr(e[1], d);
? f.is("img")
? f.attr("src", d)
: f.replaceWith(
a("<img>").attr("src", d).attr("class", f.attr("class"))
)
: f.attr(e[1], d);
}
} else b.find(p + "-" + c).html(d);
});
Expand Down Expand Up @@ -661,8 +661,8 @@
void (3 === c
? e(10)
: 40 === c
? e(50)
: 100 === c && e(500)));
? e(50)
: 100 === c && e(500)));
}, f));
};
e(1);
Expand Down
Loading
Loading