mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-03 03:00:14 +00:00
7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
/* globals $ */
|
|
$(document).ready(function () {
|
|
"use strict";
|
|
|
|
$('.mass_select').click(startMassSelect);
|
|
$('.mass_stop_select').click(stopMassSelect);
|
|
}); |