Changeset 2438679
- Timestamp:
- 12/14/2020 05:26:21 AM (5 years ago)
- Location:
- availability-calendar/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/includes/owac-add.php (modified) (1 diff)
-
availabilitycalendar.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
availability-calendar/trunk/README.txt
r2416483 r2438679 5 5 Requires at least: 3.5 6 6 Requires PHP : 5.4.4 7 Tested up to: 5. 58 Stable tag: 1.1. 87 Tested up to: 5.6 8 Stable tag: 1.1.9 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 68 68 == Changelog == 69 = 1.1.9= 70 * ERROR: jquery issue updated. 71 69 72 = 1.1.8= 70 73 * New: Number Of Months To Display add 5 year -
availability-calendar/trunk/admin/includes/owac-add.php
r2157207 r2438679 52 52 </div> 53 53 <script type="text/javascript"> 54 jQuery(document).ready(function(){ 55 addEventListener('DOMContentLoaded', function () { 56 var now = new Date((new Date()).valueOf()-1000*60*60*24); 57 pickmeup('input.from_date', { 58 position : 'right', 59 mode : 'single', 60 separator : ',', 61 hide_on_select : true, 62 default_date : false, 63 render : function (date) { 64 if (date < now) { 65 return {disabled : true, class_name : 'date-in-past'}; 66 } 67 return {}; 54 addEventListener('DOMContentLoaded', function () { 55 var now = new Date((new Date()).valueOf()-1000*60*60*24); 56 pickmeup('input.from_date', { 57 position : 'right', 58 mode : 'single', 59 separator : ',', 60 hide_on_select : true, 61 default_date : false, 62 render : function (date) { 63 if (date < now) { 64 return {disabled : true, class_name : 'date-in-past'}; 68 65 } 69 });70 pickmeup('input.to_date', {71 position : 'right',72 mode : 'single',73 separator : ',',74 hide_on_select : true,75 default_date : false,76 render : function (date) {77 if (date < now) {78 return {disabled : true, class_name : 'date-in-past'};79 }80 return { };66 return {}; 67 } 68 }); 69 pickmeup('input.to_date', { 70 position : 'right', 71 mode : 'single', 72 separator : ',', 73 hide_on_select : true, 74 default_date : false, 75 render : function (date) { 76 if (date < now) { 77 return {disabled : true, class_name : 'date-in-past'}; 81 78 } 82 }); 79 return {}; 80 } 83 81 }); 84 82 }); -
availability-calendar/trunk/availabilitycalendar.php
r2416483 r2438679 7 7 * Description: Availability Calendar Description A plugin that records post views and contains functions to easily list posts by popularity 8 8 9 * Version: 1.1. 89 * Version: 1.1.9 10 10 11 11 * Author: Offshore Web Master … … 28 28 /** 29 29 * Currently plugin version. 30 * Start at version 1.1. 830 * Start at version 1.1.9 31 31 */ 32 define( 'OWAC_VERSION', '1.1. 8' );32 define( 'OWAC_VERSION', '1.1.9' ); 33 33 34 34 /**
Note: See TracChangeset
for help on using the changeset viewer.