Add chat undo

This commit is contained in:
Jon Staab
2024-10-17 11:27:17 -07:00
parent db0dbbf428
commit d00bc64ffd
5 changed files with 102 additions and 92 deletions
-1
View File
@@ -13,7 +13,6 @@ export function slideAndFade(
node: any,
{delay = 0, duration = 400, easing = cubicOut, axis = "y"} = {},
) {
console.log('slideAndFade')
const style = getComputedStyle(node)
const primary_property = axis === "y" ? "height" : "width"
const primary_property_value = parseFloat(style[primary_property])