Files

6 lines
129 B
JavaScript
Raw Permalink Normal View History

2022-09-30 20:02:02 +01:00
import $ from 'jquery';
$('.disable-after-click').on('click', function() {
$(this).addClass('pointer-events-disabled');
});