Changeset 801563
- Timestamp:
- 11/09/2013 01:58:20 PM (12 years ago)
- Location:
- contact-form-7-datepicker/trunk
- Files:
-
- 1 added
- 2 edited
-
contact-form-7-datepicker.php (modified) (1 diff)
-
datetimepicker.php (modified) (2 diffs)
-
js/jquery-ui-sliderAccess.js (added)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-7-datepicker/trunk/contact-form-7-datepicker.php
r801560 r801563 90 90 wp_enqueue_script('jquery-ui-slider'); 91 91 92 wp_enqueue_script( 93 'jquery-ui-slider-access', 94 plugins_url('js/jquery-ui-sliderAccess.js', __FILE__), 95 array('jquery-ui-slider', 'jquery-ui-button'), 96 '', 97 true 98 ); 99 92 100 wp_register_script( 93 101 'jquery-ui-effect-core', -
contact-form-7-datepicker/trunk/datetimepicker.php
r755191 r801563 22 22 'showTimezone' => '', 23 23 'controlType' => 'slider', 24 'addSliderAccess' => true, 25 'sliderAccessArgs' => array( 26 'touchonly' => true 27 ), 24 28 'hourMin' => '', 25 29 'hourMax' => '', … … 123 127 $this->options['firstDay'] = get_option('start_of_week'); 124 128 125 if (isset($this->options['noWeekends'])){129 if (isset($this->options['noWeekends'])) { 126 130 $this->noWeekends = $this->options['noWeekends']; 127 131 unset($this->options['noWeekends']); 128 132 } 129 133 130 if (isset($this->options['minDate'])){134 if (isset($this->options['minDate'])) { 131 135 $this->minDate = $this->options['minDate']; 132 136 unset($this->options['minDate']); 133 137 } 134 138 135 if (isset($this->options['maxDate'])){139 if (isset($this->options['maxDate'])) { 136 140 $this->maxDate = $this->options['maxDate']; 137 141 unset($this->options['maxDate']);
Note: See TracChangeset
for help on using the changeset viewer.