My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions

Issue 74 attachment: diff (869 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--- /Users/phasma/Downloads/fullcalendar-1.5.2/fullcalendar/fullcalendar.js 2011-08-21 22:07:18.000000000 +0400
+++ /Users/phasma/Documents/workspace/fotoworld/fotoworld/media/js/fullcalendar.min.js 2012-01-03 16:22:00.000000000 +0400
@@ -4647,12 +4647,17 @@ function DayEventRenderer() {
}else{
html += "<div";
}
+ css = event.css;
+ if (css) {
+ classes.push(css);
+ }
+
html +=
" class='" + classes.join(' ') + "'" +
" style='position:absolute;z-index:8;left:"+left+"px;" + skinCss + "'" +
">" +
"<div" +
- " class='fc-event-inner fc-event-skin'" +
+ " class='fc-event-inner fc-event-skin " + (css ? css : '') + "'" +
(skinCss ? " style='" + skinCss + "'" : '') +
">";
if (!event.allDay && seg.isStart) {
@@ -5206,5 +5211,5 @@ function HorizontalPositionCache(getElem
};

}
-
+
})(jQuery);
Powered by Google Project Hosting