Plugin Directory

Changeset 3010596


Ignore:
Timestamp:
12/15/2023 03:05:02 PM (2 years ago)
Author:
roomcloud
Message:

version 2.0.19

Location:
roomcloud
Files:
22 edited
7 copied

Legend:

Unmodified
Added
Removed
  • roomcloud/tags/2.0.19/CSS/wp_se1_horizontal_template.css

    r2606590 r3010596  
    1313/* custom */
    1414}
    15 
    16 
     15#room_header_add:focus, #btn-search:focus{
     16    outline:none;
     17}
     18
     19#travelers, #pin{
     20    text-align: center;
     21}
    1722/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
    1823
  • roomcloud/tags/2.0.19/CSS/wp_se1_horizontal_template_multi_hotel.css

    r2606590 r3010596  
    1212  --row-height:30px;
    1313/* custom */
     14}
     15#room_header_add:focus, #btn-search:focus, #hotel:focus{
     16    outline:none;
    1417}
    1518
  • roomcloud/tags/2.0.19/CSS/wp_se1_vertical_template.css

    r2606590 r3010596  
    1212}
    1313
    14 
     14#room_header_add:focus, #btn-search:focus{
     15    outline:none;
     16}
    1517
    1618/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
     
    247249    background-image: none;
    248250    border: 1px solid #ccc;
    249     border-radius: 4px;
     251    border-radius: 0 4px 4px 0;
    250252    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    251253    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
     
    264266    background-color: #eee;
    265267    border: 1px solid #ccc;
    266     border-radius: 4px;
     268    border-radius: 4px 0 0 4px;
    267269}
    268270
  • roomcloud/tags/2.0.19/CSS/wp_se2_horizontal_template.css

    r2606590 r3010596  
    1313/* custom */
    1414}
    15 
    16 
     15#room_header_add:focus, #btn-search:focus{
     16    outline:none;
     17}
     18
     19#travelers, #pin{
     20    text-align: center;
     21}
    1722/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
    1823
  • roomcloud/tags/2.0.19/CSS/wp_se2_horizontal_template_multi_hotel.css

    r2606590 r3010596  
    1414}
    1515
     16#room_header_add:focus, #btn-search:focus, #hotel:focus{
     17    outline:none;
     18}
    1619
    1720/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
  • roomcloud/tags/2.0.19/CSS/wp_se2_vertical_template.css

    r2606590 r3010596  
    1212}
    1313
    14 
     14#room_header_add:focus, #btn-search:focus{
     15    outline:none;
     16}
    1517
    1618/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
     
    247249    background-image: none;
    248250    border: 1px solid #ccc;
    249     border-radius: 4px;
     251    border-radius: 0 4px 4px 0px;
    250252    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    251253    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
     
    264266    background-color: #eee;
    265267    border: 1px solid #ccc;
    266     border-radius: 4px;
     268    border-radius: 4px 0 0 4px;
    267269}
    268270
  • roomcloud/tags/2.0.19/JS/wp_se1_horizontal_template.js

    r2771116 r3010596  
    222222    setup: (picker) => {
    223223       
     224        picker.on('before:show', (el) => {
     225            // some action
     226            jQuery('.litepicker').addClass('notranslate');
     227            //console.log('adding notranslate');
     228        });
     229       
    224230        picker.on('selected', (date1, date2) => {
    225231           
  • roomcloud/tags/2.0.19/JS/wp_se1_horizontal_template_multi_hotel.js

    r2771116 r3010596  
    226226    minDate:today.format("YYYY-MM-DD"),
    227227    setup: (picker) => {
    228        
     228        picker.on('before:show', (el) => {
     229            // some action
     230            jQuery('.litepicker').addClass('notranslate');
     231            //console.log('adding notranslate');
     232        });
    229233        picker.on('selected', (date1, date2) => {
    230234           
  • roomcloud/tags/2.0.19/JS/wp_se1_vertical_template.js

    r2651357 r3010596  
    8383    minDate:today.format("YYYY-MM-DD"),
    8484    setup: (picker) => {
     85       
     86        picker.on('before:show', (el) => {
     87            // some action
     88            jQuery('.litepicker').addClass('notranslate');
     89            //console.log('adding notranslate');
     90        });
    8591       
    8692        picker.on('selected', (date1, date2) => {
  • roomcloud/tags/2.0.19/JS/wp_se2_horizontal_template.js

    r2771116 r3010596  
    221221    minDate:today.format("YYYY-MM-DD"),
    222222    setup: (picker) => {
    223        
     223        picker.on('before:show', (el) => {
     224            // some action
     225            jQuery('.litepicker').addClass('notranslate');
     226            //console.log('adding notranslate');
     227        });
     228       
    224229        picker.on('selected', (date1, date2) => {
    225230           
     
    247252    jQuery("#calendar_search_span").click(function(){
    248253        picker.show();
     254       
    249255    });
    250256
  • roomcloud/tags/2.0.19/JS/wp_se2_horizontal_template_multi_hotel.js

    r2771116 r3010596  
    220220    setup: (picker) => {
    221221       
     222        picker.on('before:show', (el) => {
     223            // some action
     224            jQuery('.litepicker').addClass('notranslate');
     225            //console.log('adding notranslate');
     226        });
     227       
    222228        picker.on('selected', (date1, date2) => {
    223229           
  • roomcloud/tags/2.0.19/JS/wp_se2_vertical_template.js

    r2692650 r3010596  
    7474    setup: (picker) => {
    7575       
     76        picker.on('before:show', (el) => {
     77            // some action
     78            jQuery('.litepicker').addClass('notranslate');
     79            //console.log('adding notranslate');
     80        });
     81       
    7682        picker.on('selected', (date1, date2) => {
    7783           
  • roomcloud/tags/2.0.19/readme.txt

    r3010592 r3010596  
    7878= 2.0.16 =
    7979fixed hungarian dictionary bug
    80 = 2.0.18 =
    81 fixed google translation plugin bug
     80= 2.0.19 =
     81fixed google automated translation plugin conflict
    8282
    8383== Frequently Asked Questions ==
  • roomcloud/tags/2.0.19/roomcloud.php

    r3010592 r3010596  
    44 * Plugin URI: http://www.roomcloud.net
    55 * Description: A Plugin to add roomcloud booking form to hotel website using [roomcloud] shortcode
    6  * Version: 2.0.18
     6 * Version: 2.0.19
    77 * Author: Tecnes Milano Srl
    88 * Author URI: http://www.roomcloud.net
  • roomcloud/trunk/CSS/wp_se1_horizontal_template.css

    r2606590 r3010596  
    1313/* custom */
    1414}
    15 
    16 
     15#room_header_add:focus, #btn-search:focus{
     16    outline:none;
     17}
     18
     19#travelers, #pin{
     20    text-align: center;
     21}
    1722/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
    1823
  • roomcloud/trunk/CSS/wp_se1_horizontal_template_multi_hotel.css

    r2606590 r3010596  
    1212  --row-height:30px;
    1313/* custom */
     14}
     15#room_header_add:focus, #btn-search:focus, #hotel:focus{
     16    outline:none;
    1417}
    1518
  • roomcloud/trunk/CSS/wp_se1_vertical_template.css

    r2606590 r3010596  
    1212}
    1313
    14 
     14#room_header_add:focus, #btn-search:focus{
     15    outline:none;
     16}
    1517
    1618/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
     
    247249    background-image: none;
    248250    border: 1px solid #ccc;
    249     border-radius: 4px;
     251    border-radius: 0 4px 4px 0;
    250252    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    251253    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
     
    264266    background-color: #eee;
    265267    border: 1px solid #ccc;
    266     border-radius: 4px;
     268    border-radius: 4px 0 0 4px;
    267269}
    268270
  • roomcloud/trunk/CSS/wp_se2_horizontal_template.css

    r2606590 r3010596  
    1313/* custom */
    1414}
    15 
    16 
     15#room_header_add:focus, #btn-search:focus{
     16    outline:none;
     17}
     18
     19#travelers, #pin{
     20    text-align: center;
     21}
    1722/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
    1823
  • roomcloud/trunk/CSS/wp_se2_horizontal_template_multi_hotel.css

    r2606590 r3010596  
    1414}
    1515
     16#room_header_add:focus, #btn-search:focus, #hotel:focus{
     17    outline:none;
     18}
    1619
    1720/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
  • roomcloud/trunk/CSS/wp_se2_vertical_template.css

    r2606590 r3010596  
    1212}
    1313
    14 
     14#room_header_add:focus, #btn-search:focus{
     15    outline:none;
     16}
    1517
    1618/*BOOTSTRAP ESSENTIALS BASED ON BOOTSTRAP 3 */
     
    247249    background-image: none;
    248250    border: 1px solid #ccc;
    249     border-radius: 4px;
     251    border-radius: 0 4px 4px 0px;
    250252    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    251253    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
     
    264266    background-color: #eee;
    265267    border: 1px solid #ccc;
    266     border-radius: 4px;
     268    border-radius: 4px 0 0 4px;
    267269}
    268270
  • roomcloud/trunk/JS/wp_se1_horizontal_template.js

    r2771116 r3010596  
    222222    setup: (picker) => {
    223223       
     224        picker.on('before:show', (el) => {
     225            // some action
     226            jQuery('.litepicker').addClass('notranslate');
     227            //console.log('adding notranslate');
     228        });
     229       
    224230        picker.on('selected', (date1, date2) => {
    225231           
  • roomcloud/trunk/JS/wp_se1_horizontal_template_multi_hotel.js

    r2771116 r3010596  
    226226    minDate:today.format("YYYY-MM-DD"),
    227227    setup: (picker) => {
    228        
     228        picker.on('before:show', (el) => {
     229            // some action
     230            jQuery('.litepicker').addClass('notranslate');
     231            //console.log('adding notranslate');
     232        });
    229233        picker.on('selected', (date1, date2) => {
    230234           
  • roomcloud/trunk/JS/wp_se1_vertical_template.js

    r2651357 r3010596  
    8383    minDate:today.format("YYYY-MM-DD"),
    8484    setup: (picker) => {
     85       
     86        picker.on('before:show', (el) => {
     87            // some action
     88            jQuery('.litepicker').addClass('notranslate');
     89            //console.log('adding notranslate');
     90        });
    8591       
    8692        picker.on('selected', (date1, date2) => {
  • roomcloud/trunk/JS/wp_se2_horizontal_template.js

    r2771116 r3010596  
    221221    minDate:today.format("YYYY-MM-DD"),
    222222    setup: (picker) => {
    223        
     223        picker.on('before:show', (el) => {
     224            // some action
     225            jQuery('.litepicker').addClass('notranslate');
     226            //console.log('adding notranslate');
     227        });
     228       
    224229        picker.on('selected', (date1, date2) => {
    225230           
     
    247252    jQuery("#calendar_search_span").click(function(){
    248253        picker.show();
     254       
    249255    });
    250256
  • roomcloud/trunk/JS/wp_se2_horizontal_template_multi_hotel.js

    r2771116 r3010596  
    220220    setup: (picker) => {
    221221       
     222        picker.on('before:show', (el) => {
     223            // some action
     224            jQuery('.litepicker').addClass('notranslate');
     225            //console.log('adding notranslate');
     226        });
     227       
    222228        picker.on('selected', (date1, date2) => {
    223229           
  • roomcloud/trunk/JS/wp_se2_vertical_template.js

    r2692650 r3010596  
    7474    setup: (picker) => {
    7575       
     76        picker.on('before:show', (el) => {
     77            // some action
     78            jQuery('.litepicker').addClass('notranslate');
     79            //console.log('adding notranslate');
     80        });
     81       
    7682        picker.on('selected', (date1, date2) => {
    7783           
  • roomcloud/trunk/readme.txt

    r3010592 r3010596  
    7878= 2.0.16 =
    7979fixed hungarian dictionary bug
    80 = 2.0.18 =
    81 fixed google translation plugin bug
     80= 2.0.19 =
     81fixed google automated translation plugin conflict
    8282
    8383== Frequently Asked Questions ==
  • roomcloud/trunk/roomcloud.php

    r3010592 r3010596  
    44 * Plugin URI: http://www.roomcloud.net
    55 * Description: A Plugin to add roomcloud booking form to hotel website using [roomcloud] shortcode
    6  * Version: 2.0.18
     6 * Version: 2.0.19
    77 * Author: Tecnes Milano Srl
    88 * Author URI: http://www.roomcloud.net
Note: See TracChangeset for help on using the changeset viewer.