app/Plugin/CustomerPlus42/Resource/template/default/datepicker_js.twig line 1

Open in your IDE?
  1. {#
  2. * Plugin Name : CustomerPlus4
  3. *
  4. * Copyright (C) BraTech Co., Ltd. All Rights Reserved.
  5. * http://www.bratech.co.jp/
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. #}
  10. <style type="text/css">
  11.     .datepicker-days th.dow:first-child,
  12.     .datepicker-days td:first-child {
  13.         color: #f00;
  14.     }
  15.     .datepicker-days th.dow:last-child,
  16.     .datepicker-days td:last-child {
  17.         color: #00f;
  18.     }
  19. </style>
  20. <script>
  21. $(function() {
  22.     if ($('[type="date"]').prop('type') != 'date') {
  23.         // input type属性でdateが利用できるかどうか(カレンダー表示できないブラウザ対応)
  24.         $.when(
  25.             $.getScript("{{ asset('assets/js/vendor/moment.min.js', 'admin') }}"),
  26.             $.getScript("{{ asset('assets/js/vendor/moment-with-locales.min.js', 'admin') }}"),
  27.             $.getScript("{{ asset('assets/js/vendor/tempusdominus-bootstrap-4.min.js', 'admin') }}")
  28.         ).done(function() {
  29.             $('input[type=date]').datetimepicker({
  30.                 locale: '{{ eccube_config.locale }}',
  31.                 format: 'YYYY-MM-DD',
  32.                 useCurrent: false,
  33.                 buttons: {
  34.                     showToday: true,
  35.                     showClose: true
  36.                 }
  37.             });
  38.         });
  39.     }
  40. });
  41. </script>