January 14, 2021
JMS JF Campaigns
- misc turnbacks
BSH recipe name fix
Team meeting
JMS JF Campaigns
- scroll on form completion
FIQ
- add CSP
JMS JF Campaigns
- add some links
- removing copy button
- good source of throttled window scroll code
// See https://developer.mozilla.org/en-US/docs/Web/Events/scroll
var lastScrollPosition = 0,
tick = false; // Track whether call is currently in process
function customFunction (scrollPos) {
// Custom function that does something
// based on the scroll position
}
window.addEventListener('scroll', function(e) {
lastScrollPosition = window.scrollY;
if (!tick) {
setTimeout(function () {
customFunction(lastScrollPosition);
tick = false;
}, 16)
}
tick = true;
});
BSH Restore missing PDFs
JMS JF Campaigns
- portfolio turnbacks