Plugin Directory

Changeset 2915352


Ignore:
Timestamp:
05/21/2023 09:26:12 AM (3 years ago)
Author:
zeevou
Message:

search widget loading

Location:
zeevou/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • zeevou/trunk/css/style.css

    r2895875 r2915352  
    2525
    2626#zeevou-booking-widget-loading-img {
     27    height: 50px;
     28    width: 50px;
     29}
     30
     31#zeevou-search-loading-container {
     32    text-align: center;
     33    height: 50px;
     34    padding: 20px;
     35}
     36
     37#zeevou-search-widget-loading-img {
    2738    height: 50px;
    2839    width: 50px;
  • zeevou/trunk/js/search.js

    r2915337 r2915352  
    681681
    682682    var zeevouPropertyForm = jQuery('#zeevou-property-form');
     683    var zeevouPropertyWidget = jQuery('.zeevou-property_widget');
     684    zeevouPropertyWidget.append(
     685        jQuery('<div />', { 'id': 'zeevou-search-loading-container' }).append(
     686            jQuery('<img />', { 'class': 'zeevou-loading-img', 'id': 'zeevou-search-widget-loading-img', 'src': zvpluginUrl + '/zeevou/img/loading1.gif' }).append(
     687
     688            )
     689        )
     690    );
     691
    683692
    684693    zeevouPropertyForm.append("<p class='zeevou-property_text' id='zeevou-property_guests_text' >Guests</p>");
     
    691700    zeevouPropertyForm.append("<div class='zeevou-property-button-wrapper' style='height:fit-content' ><button class='zeevou-property-search-button zeevou-property-white' ><i class='fa fa-search' style='color:rgba(0, 0, 0, 0.65); font-size:20px;'></i></button></div>");
    692701
     702    zeevouPropertyForm.hide();
    693703    jQuery.when(getPropertyAvailability(prop_id)).done(function(data) {
     704        jQuery('#zeevou-search-loading-container').hide();
     705        zeevouPropertyForm.show();
    694706
    695707        zvAvailabilityArr = JSON.parse(data);
  • zeevou/trunk/readme.txt

    r2915337 r2915352  
    44Requires at least: 3.1.0
    55Tested up to: 5.9.2
    6 Stable tag: 0.7.37
     6Stable tag: 0.7.38
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • zeevou/trunk/zeevou.php

    r2915337 r2915352  
    55* Plugin URI: https://zeevou.com
    66* Description: Zeevou is a global community that helps you grow your hospitality business through cutting-edge automation, industry-leading training, and world-class support.
    7 * Version: 0.7.37
    8 * Stable tag: 0.7.37
     7* Version: 0.7.38
     8* Stable tag: 0.7.38
    99* Tags: Booking Website Engine, Airbnb, Booking.com, Expedia, Agoda, VRBO, HomeAway, Hotel, iCal, Zeevou, Short Term Accommodation, Serviced Apartment, Hospitality, Vacation Rentals, Property Management System, Property Management Software (PMS), Central Reservation System (CRS), Holiday Homes, Channel Manager, Guesthouse, Booking System, Free Booking Engine, Direct Booking Website
    1010* Requires at least: 3.1.0
     
    7676//============================================================================
    7777if (!defined('ZEEVOU_PLUGIN_VERSION'))
    78     define('ZEEVOU_PLUGIN_VERSION', '0.7.37');
     78    define('ZEEVOU_PLUGIN_VERSION', '0.7.38');
    7979
    8080    function zeevou_plugin_check_version() {
Note: See TracChangeset for help on using the changeset viewer.