first commit

This commit is contained in:
dev-chiefworks
2022-05-31 16:21:53 -04:00
commit f76abffdcd
5978 changed files with 1078901 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
/* ------------------------------------------------------------------------------
*
* # Job search - apply
*
* Specific JS code additions for job search page kit - apply
*
* Version: 1.0
* Latest update: Jan 10, 2017
*
* ---------------------------------------------------------------------------- */
$(function() {
// Select2 select
// ------------------------------
// With search
$('.select').select2();
// Without search
$('.select-simple').select2({
minimumResultsForSearch: Infinity
});
// Date picker
// ------------------------------
// Default functionality
$(".datepicker").datepicker();
// Styled form components
// ------------------------------
// Checkboxes, radios
$(".styled").uniform({ radioClass: 'choice' });
// File input
$(".file-styled").uniform({
fileButtonClass: 'action btn bg-pink-400'
});
});