Plugin Directory

Changeset 3275782


Ignore:
Timestamp:
04/17/2025 12:22:01 PM (12 months ago)
Author:
curato
Message:

Update Belegungsplan Handling

Location:
bookyt/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • bookyt/trunk/css/belegungsplan.css

    r3245681 r3275782  
    144144    padding-bottom: unset;
    145145}
     146
     147
     148.bookyt_kalender .calendar-container table td[data-resource]:not(.appointment):hover{
     149    background: #eee;
     150}
  • bookyt/trunk/index.php

    r3254011 r3275782  
    44Plugin URI: https://bookyt.de/services/wordpress-plugin
    55Description: Integration Bookyt Vermietsoftware in deine Wordpress Seite
    6 Version: 2.13
     6Version: 2.14
    77Author: Philipp Stäbler (PHCOM GmbH)
    88Author URI: https://phcom.de/
  • bookyt/trunk/js/belegungsplan.js

    r3252761 r3275782  
    3737        var header = $('<tr></tr>');
    3838        header.append('<th></th>');
    39         for (var h = 0; h < 24; h++) {
     39        for (var h = 8; h < 24; h++) {
    4040            var hh = (h < 10) ? "0" + h : "" + h;
    4141            header.append('<th class="small-header">' + hh + '</th>');
     
    223223    function onCellClick(categoryId, station_id, dateObj) {
    224224
    225         var vURL = data["url_frontend"] + "?fahrzeugsubgruppe_id=" + categoryId + "&station_id=" + station_id + "&date=" + dateObj.toISOString();
     225        var vURL = data["url_frontend"] + "?fahrzeugsubgruppe_id=" + categoryId + "&station_id=" + station_id + "&start=" + dateObj.toISOString();
    226226        bookytNeueBuchung(vURL);
    227 
    228         //alert(url);
    229227        //alert("Leere Zelle geklickt:\nKategorie-ID: " + categoryId + "\nResource-ID: " + resourceId + "\nDatum: " + dateObj.toString());
    230228    }
Note: See TracChangeset for help on using the changeset viewer.