Move all assets to assets directory

This commit is contained in:
Akira Tempaku 2024-04-22 05:20:14 +09:00
commit 544cbfcb6a
22 changed files with 15 additions and 17 deletions
public/vendor/htmx-ext

View file

@ -1,16 +0,0 @@
htmx.defineExtension('alpine-morph', {
isInlineSwap: function (swapStyle) {
return swapStyle === 'morph';
},
handleSwap: function (swapStyle, target, fragment) {
if (swapStyle === 'morph') {
if (fragment.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
Alpine.morph(target, fragment.firstElementChild);
return [target];
} else {
Alpine.morph(target, fragment.outerHTML);
return [target];
}
}
}
});