mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-20 11:19:16 +00:00
20 lines
574 B
JavaScript
20 lines
574 B
JavaScript
![]() |
$(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);
|
||
|
|
||
|
});
|