Changeset 2072942
- Timestamp:
- 04/23/2019 07:34:30 AM (7 years ago)
- Location:
- wp-hotel-booking-booking-room/trunk
- Files:
-
- 3 edited
-
assets/js/site.js (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
wp-hotel-booking-room.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-hotel-booking-booking-room/trunk/assets/js/site.js
r2070356 r2072942 61 61 tomorrow.setDate(today.getDate() + date_range); 62 62 var unavailableDates = Hotel_Booking_Blocked_Days.blocked_days; 63 function unavailable(date) { console.log(date);63 function unavailable(date) { 64 64 var offset = date.getTimezoneOffset(); 65 65 var timestamp = Date.parse(date) - offset * 60 * 1000; … … 103 103 minDate: tomorrow, 104 104 maxDate: '+365D', 105 beforeShowDay: unavailable, 105 106 onSelect: function (selected) { 106 107 var checkin_date = checkout.datepicker('getDate'), -
wp-hotel-booking-booking-room/trunk/readme.txt
r2070356 r2072942 59 59 == Changelog == 60 60 61 = 1.8.1 = 62 + Disabled the date which was blocked in Checkout field. 63 61 64 = 1.8.0 = 62 65 + Disabled the date which was blocked. -
wp-hotel-booking-booking-room/trunk/wp-hotel-booking-room.php
r2070356 r2072942 6 6 * Author: ThimPress 7 7 * Author URI: http://thimpress.com 8 * Version: 1.8. 08 * Version: 1.8.1 9 9 * Text Domain: wp-hotel-booking-room 10 10 * Domain Path: /languages/ … … 19 19 define( 'WPHB_BOOKING_ROOM_INC', WPHB_BOOKING_ROOM_PATH . 'inc' ); 20 20 define( 'WPHB_BOOKING_ROOM_TEMPLATES', WPHB_BOOKING_ROOM_PATH . 'templates/' ); 21 define( 'WPHB_BOOKING_ROOM_VER', '1. 7.9' );21 define( 'WPHB_BOOKING_ROOM_VER', '1.8.1' ); 22 22 23 23 if ( ! class_exists( 'WP_Hotel_Booking_Room' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.