Add global js event handlers for transition and animation ends

This commit is contained in:
Matija Koželj 2023-03-15 10:24:02 +01:00
parent 54da322cd0
commit c0b1c950a6

View File

@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Connected.Components;
[EventHandler("ontransitionend", typeof(EventArgs), enableStopPropagation: true, enablePreventDefault: false)]
[EventHandler("onanimationend", typeof(EventArgs), enableStopPropagation: true, enablePreventDefault: false)]
public static class EventHandlers
{
}