Plugin Directory

Changeset 2438679


Ignore:
Timestamp:
12/14/2020 05:26:21 AM (5 years ago)
Author:
offshorewebmaster
Message:

tested with 5.6

Location:
availability-calendar/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • availability-calendar/trunk/README.txt

    r2416483 r2438679  
    55Requires at least: 3.5
    66Requires PHP : 5.4.4
    7 Tested up to: 5.5
    8 Stable tag: 1.1.8
     7Tested up to: 5.6
     8Stable tag: 1.1.9
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6767
    6868== Changelog ==
     69= 1.1.9=
     70* ERROR: jquery issue updated.
     71
    6972= 1.1.8=
    7073* New: Number Of Months To Display add 5 year
  • availability-calendar/trunk/admin/includes/owac-add.php

    r2157207 r2438679  
    5252        </div>
    5353        <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'};
    6865                        }
    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'};
    8178                        }
    82                     });
     79                        return {};
     80                    }
    8381                });
    8482            });
  • availability-calendar/trunk/availabilitycalendar.php

    r2416483 r2438679  
    77 * Description:       Availability Calendar Description A plugin that records post views and contains functions to easily list posts by popularity
    88 
    9  * Version:           1.1.8
     9 * Version:           1.1.9
    1010 
    1111 * Author:            Offshore Web Master
     
    2828/**
    2929 * Currently plugin version.
    30  * Start at version 1.1.8
     30 * Start at version 1.1.9
    3131 */
    32 define( 'OWAC_VERSION', '1.1.8' );
     32define( 'OWAC_VERSION', '1.1.9' );
    3333   
    3434/**
Note: See TracChangeset for help on using the changeset viewer.