Changeset 3275782
- Timestamp:
- 04/17/2025 12:22:01 PM (12 months ago)
- Location:
- bookyt/trunk
- Files:
-
- 3 edited
-
css/belegungsplan.css (modified) (1 diff)
-
index.php (modified) (1 diff)
-
js/belegungsplan.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bookyt/trunk/css/belegungsplan.css
r3245681 r3275782 144 144 padding-bottom: unset; 145 145 } 146 147 148 .bookyt_kalender .calendar-container table td[data-resource]:not(.appointment):hover{ 149 background: #eee; 150 } -
bookyt/trunk/index.php
r3254011 r3275782 4 4 Plugin URI: https://bookyt.de/services/wordpress-plugin 5 5 Description: Integration Bookyt Vermietsoftware in deine Wordpress Seite 6 Version: 2.1 36 Version: 2.14 7 7 Author: Philipp Stäbler (PHCOM GmbH) 8 8 Author URI: https://phcom.de/ -
bookyt/trunk/js/belegungsplan.js
r3252761 r3275782 37 37 var header = $('<tr></tr>'); 38 38 header.append('<th></th>'); 39 for (var h = 0; h < 24; h++) {39 for (var h = 8; h < 24; h++) { 40 40 var hh = (h < 10) ? "0" + h : "" + h; 41 41 header.append('<th class="small-header">' + hh + '</th>'); … … 223 223 function onCellClick(categoryId, station_id, dateObj) { 224 224 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(); 226 226 bookytNeueBuchung(vURL); 227 228 //alert(url);229 227 //alert("Leere Zelle geklickt:\nKategorie-ID: " + categoryId + "\nResource-ID: " + resourceId + "\nDatum: " + dateObj.toString()); 230 228 }
Note: See TracChangeset
for help on using the changeset viewer.