PluginProbe
Property Hive / 2.4.0
Property Hive v2.4.0
2.4.0 2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 All 262 releases
← All changes | assets/js/multiselect/jquery.multiselect.js +2 -2 1.4.57 → 2.4.0 View file →
@@ -31,9 +31,9 @@
31 31 **/
32 32 (function($){
33 33 var defaults = {
34 34 columns: 1, // how many columns should be use to show options
35 - search : false, // include option search box
35 + search : propertyhive_multiselect_params.search, // include option search box
36 36
37 37 // search filter options
38 38 searchOptions : {
39 39 delay : 250, // time (in ms) between keystrokes until search happens
@@ -46,9 +46,9 @@
46 46 // plugin texts
47 47 texts: {
48 48 placeholder : 'Select options', // text to use in dummy input
49 49 search : 'Search', // search input placeholder text
50 - selectedOptions: ' selected', // selected suffix text
50 + selectedOptions: ' ' + propertyhive_multiselect_params.selected_text, // selected suffix text
51 51 selectAll : 'Select all', // select all text
52 52 unselectAll : 'Unselect all', // unselect all text
53 53 noneSelected : 'None Selected' // None selected text
54 54 },