今朝は午前8時の便でシスコに移動し、豪雨のなかをSFO空港からゴールデンゲートブリッジだけ通過して、スタンフォードに住んでいる腰痛研究家のEsther Gokhalさんの御宅にお邪魔してきた。 彼女が時間をかけて作った「8 STEP to a PAIN-FREE BACK」は素晴らしいの一言。 様々な国の人々の日常姿勢や動作を捉えた美しい写真が、ふんだんに使われている。
*
* Again: this will **not** prevent inline script, e.g.:
* .
*
* This workaround is possible because Safari supports the non-standard 'beforeload' event.
* This allows us to trap the module and nomodule load.
*
* Note also that `nomodule` is supported in later versions of Safari - it's just 10.1 that
* omits this attribute.
* -->
*/
(function () {
const check = document.createElement('script');
if (!('noModule' in check) && 'onbeforeload' in check) {
let support = false;
document.addEventListener(
'beforeload',
(e) => {
if (e.target === check) {
support = true;
} else if (!e.target.hasAttribute('nomodule') || !support) {
return;
}
e.preventDefault();
},
true,
);
check.type = 'module';
const blob = URL.createObjectURL(
new window.Blob([], { type: 'text/javascript' }),
);
check.src = blob;
check.onload = () => {
URL.revokeObjectURL(blob);
};
document.head.appendChild(check);
check.remove();
}
})();