mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 16:00:13 +00:00
Can configure file upload in file imports.
This commit is contained in:
20
public/js/ff/import/file/configure-upload.js
vendored
Normal file
20
public/js/ff/import/file/configure-upload.js
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
$(function () {
|
||||
"use strict";
|
||||
|
||||
var importMultiSelect = {
|
||||
disableIfEmpty: true,
|
||||
selectAllText: selectAllText,
|
||||
nonSelectedText: nonSelectedText,
|
||||
nSelectedText: nSelectedText,
|
||||
allSelectedText: allSelectedText,
|
||||
includeSelectAllOption: true,
|
||||
enableFiltering: true,
|
||||
enableCaseInsensitiveFiltering: true,
|
||||
filterPlaceholder: filterPlaceholder,
|
||||
enableHTML: true,
|
||||
};
|
||||
|
||||
// make account select a hip new bootstrap multi-select thing.
|
||||
$('#inputSpecifics').multiselect(importMultiSelect);
|
||||
|
||||
});
|
Reference in New Issue
Block a user