mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06: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);
|
||
|
});
|