lib/generators/event_calendar/templates/jq_javascript.js in event-calendar-2.3.2 vs lib/generators/event_calendar/templates/jq_javascript.js in event-calendar-2.3.3
- old
+ new
@@ -1,20 +1,22 @@
/*
* Smart event highlighting
* Handles when events span rows, or don't have a background color
*/
-$(document).ready(function() {
+jQuery(document).ready(function($) {
var highlight_color = "#2EAC6A";
// highlight events that have a background color
$(".ec-event-bg").live("mouseover", function() {
event_id = $(this).attr("data-event-id");
- $(".ec-event-"+event_id).css("background-color", highlight_color);
+ event_class_name = $(this).attr("data-event-class");
+ $(".ec-"+event_class_name+"-"+event_id).css("background-color", highlight_color);
});
$(".ec-event-bg").live("mouseout", function() {
event_id = $(this).attr("data-event-id");
+ event_class_name = $(this).attr("data-event-class");
event_color = $(this).attr("data-color");
- $(".ec-event-"+event_id).css("background-color", event_color);
+ $(".ec-"+event_class_name+"-"+event_id).css("background-color", event_color);
});
// highlight events that don't have a background color
$(".ec-event-no-bg").live("mouseover", function() {
ele = $(this);
\ No newline at end of file