This commit is contained in:
2020-01-24 17:53:26 -05:00
parent 7f3e301b7d
commit a77f69912d
1264 changed files with 339035 additions and 0 deletions
@@ -0,0 +1,30 @@
/*=========================================================================================
File Name: account-setting.js
Description: Account setting.
----------------------------------------------------------------------------------------
Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
Author: PIXINVENT
Author URL: http://www.themeforest.net/user/pixinvent
==========================================================================================*/
$(document).ready(function () {
// language select
var languageselect = $("#languageselect2").select2({
dropdownAutoWidth: true,
width: '100%'
});
// music select
var musicselect = $("#musicselect2").select2({
dropdownAutoWidth: true,
width: '100%'
});
// movies select
var moviesselect = $("#moviesselect2").select2({
dropdownAutoWidth: true,
width: '100%'
});
// birthdate date
$('.birthdate-picker').pickadate({
format: 'mmmm, d, yyyy'
});
});