Changeset 2776768
- Timestamp:
- 08/28/2022 03:23:20 PM (4 years ago)
- Location:
- book-a-room-event-calendar/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
bookaroom-events.php (modified) (2 diffs)
-
templates/calendar.php (modified) (1 diff)
-
templates/searchResults.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
book-a-room-event-calendar/trunk/README.txt
r1922976 r2776768 49 49 50 50 == Changelog == 51 = 1.9 = 52 * BUGFIX: Changed how scripts were being called so that jquery works again and the popups don't error out, causing the page to fail to allow anyone to reserve. 53 51 54 = 1.8 = 52 55 * Added in empty checking for basedir -
book-a-room-event-calendar/trunk/bookaroom-events.php
r1922976 r2776768 4 4 Plugin URI: https://wordpress.org/plugins/book-a-room-event-calendar/ 5 5 Description: This is the front end for the event calendar system. 6 Version: 1. 86 Version: 1.9 7 7 Author: Colin Tomele 8 8 Author URI: http://heightslibrary.org … … 35 35 function bookaroom_init() 36 36 { 37 37 38 # shortcodes 39 wp_enqueue_script( 'bookaroom_calendar_js', plugins_url( 'book-a-room-event-calendar/js/scripts.js' ), array('jquery'), null, true ); 40 wp_enqueue_script( 'bookaroom_calendar_zebra', plugins_url( 'book-a-room-event-calendar/js/jstree/jquery.jstree.js' ), array('jquery'), null, true ); 41 38 42 wp_enqueue_style( 'myCSS', plugins_url( 'book-a-room-event-calendar/css/calendar.css' ) ); 43 39 44 wp_register_style('jquery-ui', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css'); 45 40 46 wp_enqueue_style( 'jquery-ui' ); 41 wp_enqueue_script( "jquery-ui-datepicker");42 47 48 wp_enqueue_script( 'jquery-ui-datepicker' ); 49 50 43 51 add_shortcode( 'showEvents', array( 'events_main', 'showEvents' ) ); 44 52 add_shortcode( 'showCalendar', array( 'events_main', 'calendarMain' ) ); -
book-a-room-event-calendar/trunk/templates/calendar.php
r1915936 r2776768 1 <script language="javascript">2 jQuery(function() {3 // Setup date drops4 jQuery( '#startDate, #endDate' ).datepicker();5 6 jQuery("#hideToggle").click(function(){7 jQuery("#filterCont").slideToggle();8 });9 });10 </script>11 1 <div id="bookaroom_main_container"> 12 2 <a href="#top"></a> -
book-a-room-event-calendar/trunk/templates/searchResults.php
r1915932 r2776768 1 <script language="javascript">2 jQuery(document).ready(function(){3 // Setup date drops4 jQuery( '#startDate, #endDate' ).datepicker();5 6 jQuery("#hideToggle").click(function(){7 jQuery(".searchArea").toggle();8 });9 10 jQuery("#resetAge").click( function(){11 jQuery("#ageGroup option:selected").removeAttr("selected");12 13 });14 jQuery("#resetCats").click( function(){15 jQuery("#categoryGroup option:selected").removeAttr("selected");16 17 });18 });19 20 </script>21 1 <div id="bookaroom_main_container"> 22 2 <form name="form1" method="get">
Note: See TracChangeset
for help on using the changeset viewer.