mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Chore: Add phpdocs
This commit is contained in:
7
public/v1/js/ff/list/groups.js
vendored
7
public/v1/js/ff/list/groups.js
vendored
@@ -147,19 +147,19 @@ function updateListButtons() {
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function goToMassEdit() {
|
||||
console.log(mass_edit_url + '/' + getCheckboxes());
|
||||
console.log('Mass edit URL is ' + mass_edit_url + '/' + getCheckboxes());
|
||||
window.location.href = mass_edit_url + '/' + getCheckboxes();
|
||||
return false;
|
||||
}
|
||||
|
||||
function goToBulkEdit() {
|
||||
console.log(bulk_edit_url + '/' + getCheckboxes());
|
||||
console.log('Mass edit URL is ' + bulk_edit_url + '/' + getCheckboxes());
|
||||
window.location.href = bulk_edit_url + '/' + getCheckboxes();
|
||||
return false;
|
||||
}
|
||||
|
||||
function goToMassDelete() {
|
||||
console.log(mass_delete_url + '/' + getCheckboxes());
|
||||
console.log('Mass delete URL is ' + mass_delete_url + '/' + getCheckboxes());
|
||||
window.location.href = mass_delete_url + '/' + getCheckboxes();
|
||||
return false;
|
||||
}
|
||||
@@ -208,6 +208,7 @@ function updateActionButtons() {
|
||||
$('.action-menu').hide();
|
||||
}
|
||||
}
|
||||
|
||||
function cloneTransaction(e) {
|
||||
var button = $(e.currentTarget);
|
||||
var groupId = parseInt(button.data('id'));
|
||||
|
||||
2
public/v1/js/ff/transactions/list.js
vendored
2
public/v1/js/ff/transactions/list.js
vendored
@@ -66,6 +66,7 @@ function goToMassEdit() {
|
||||
if (bases.length > 0) {
|
||||
baseHref = bases[0].href;
|
||||
}
|
||||
console.log('baseHref for mass edit is "' + baseHref + '".');
|
||||
|
||||
window.location.href = baseHref + 'transactions/mass/edit/' + checkedArray;
|
||||
return false;
|
||||
@@ -86,6 +87,7 @@ function goToBulkEdit() {
|
||||
if (bases.length > 0) {
|
||||
baseHref = bases[0].href;
|
||||
}
|
||||
console.log('baseHref for bulk edit is "' + baseHref + '".');
|
||||
|
||||
window.location.href = baseHref + 'transactions/bulk/edit/' + checkedArray;
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user