summaryrefslogtreecommitdiff
path: root/wwwroot/js/button.js
blob: f5d32f5a6ce72f74c336fb86fa99af036b89e610 (plain)
1
2
3
4
5
6
function triggerButtonError(e) {
    e.classList.remove('error')
    void e.offsetWidth;
    e.classList.add('error')
    void e.offsetWidth;
}