Skip to content

Commit 541f1ec

Browse files
committed
New version 2.8.6
1 parent e1e96a4 commit 541f1ec

368 files changed

Lines changed: 82681 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/modules/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This folder is not directly accessible
1.95 KB
Loading

assets/vendors/.htaccess

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Block access to README and PHP files
2+
<FILES ~ "README|\.php$">
3+
Order allow,deny
4+
Deny from all
5+
</FILES>
6+
# Allow access to imageupload files for TinyMCE
7+
<FILES ~ "upload\.php$">
8+
Order allow,deny
9+
Allow from all
10+
</FILES>
11+

assets/vendors/chosen/README

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Chosen (Select Box Enhancer) for jQuery and Prototype
2+
3+
Usage:
4+
-----
5+
6+
<!-- Chosen files -->
7+
<?= CHtml::scriptFile('assets/vendors/chosen/chosen.jquery.min.js'); ?>
8+
<?= CHtml::cssFile('assets/vendors/chosen/chosen.min.css'); ?>
9+
10+
<script>
11+
// INIT CHOSEN SELECTS
12+
// --------------------------------------
13+
$('select').addClass('chosen-select-filter');
14+
$('.chosen-select-filter').css({'padding': '10px'});
15+
$('.chosen-select-filter').chosen({disable_search_threshold: 7});
16+
//$('.chosen-select').chosen({disable_search: true});
17+
$('.chosen-search input, .chosen-select-filter input').attr('maxlength', 255);
18+
</script>
538 Bytes
Loading
738 Bytes
Loading

0 commit comments

Comments
 (0)