Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('.daterange').daterangepicker({
- timePicker: true,
- timePicker24Hour: true,
- startDate: date[0]==''?moment().startOf('hour'):date[0],
- endDate: date[1]==''?moment().startOf('hour').add(32, 'hour'):date[1] ,
- locale: {
- format: 'YYYY-MM-DD HH:mm',
- "separator": " - ",
- "applyLabel": "Ок",
- "cancelLabel": "Отмена",
- "fromLabel": "От",
- "toLabel": "До",
- "customRangeLabel": "Custom",
- "weekLabel": "W",
- "daysOfWeek": [
- "Вс",
- "Пн",
- "Вт",
- "Ср",
- "Чт",
- "Пт",
- "Сб"
- ],
- "monthNames": [
- "Январь",
- "Февраль",
- "Март",
- "Апрель",
- "Май",
- "Июнь",
- "Июль",
- "Август",
- "Сентябрь",
- "Октябрь",
- "Ноябрь",
- "Декабрь"
- ],
- "firstDay": 1
- }
- });
- $(".select2-multiple").select2({
- placeholder: "Выберите направление",
- allowClear: true,
- templateResult: function (row) {
- image=$(row.element).data('image');
- if (!image) return row.text;
- return $(
- '<span><img src="'+image+'" class="img-flag" /> ' + row.text + '</span>'
- );
- },
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement