Changeset 3263831
- Timestamp:
- 03/29/2025 01:05:22 PM (12 months ago)
- Location:
- ticketmachine-event-manager/trunk
- Files:
-
- 3 edited
-
assets/js/calendar.js (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
ticketmachine-event-manager.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ticketmachine-event-manager/trunk/assets/js/calendar.js
r3263779 r3263831 95 95 96 96 // Next/Prev buttons 97 jQuery("#calendar-next").on("click", function () { 97 jQuery("#calendar-next").on("click", function (e) { 98 e.preventDefault() 98 99 var view = calendar.view 99 100 calendar.next() … … 101 102 jQuery("#calendar-title").html(view.title) 102 103 }) 103 jQuery("#calendar-prev").on("click", function () { 104 jQuery("#calendar-prev").on("click", function (e) { 105 e.preventDefault() 104 106 var view = calendar.view 105 107 calendar.prev() -
ticketmachine-event-manager/trunk/readme.txt
r3263817 r3263831 95 95 96 96 == Changelog == 97 = 1.10.8 = 98 * Fix: Navigating calendar no longer scrolls to top of page. 99 97 100 = 1.10.7 = 98 101 * Option to hide search on events overview page -
ticketmachine-event-manager/trunk/ticketmachine-event-manager.php
r3263817 r3263831 5 5 Plugin URI: https://www.ticketmachine.de/ 6 6 Description: Easily create and manage cloud-based events for your wordpress site. 7 Version: 1.10. 77 Version: 1.10.8 8 8 Requires at least: 4.5 9 9 Author: NET-UP AG … … 22 22 23 23 global $ticketmachine_db_version; 24 $ticketmachine_db_version = "1.10. 7";24 $ticketmachine_db_version = "1.10.8"; 25 25 26 26 // Load translations if they don't already exist
Note: See TracChangeset
for help on using the changeset viewer.