Issue 93: GCal.js doesn't respect showTime option & forces nobg onto css classname
Status:  Released
Owner: ----
Closed:  Aug 2013
Reported by tim.spa...@gmail.com, Sep 10, 2009
What steps will reproduce the problem?
1. Set up a new gcalfeed example that returns events with times
2. Set showTime:false in the options


What is the expected output? What do you see instead?
Expect to see events with default blue shading but gcal.js code forces nobg
class if a time is included in the 'when' details.  Times are still shown
despite showTime:false being set.

var showTime = entry['gd$when'][0]['startTime'].indexOf('T') != -1;
var classNames = [];

if (showTime) {
   classNames.push('nobg');
}


What version of the product are you using? On what operating system?
Fullcalendar 1.2.1, Windows XP, IE,FF,Chrome

Please provide any additional information below.

Sep 10, 2009
Project Member #1 adamrs...@gmail.com
for the 'nobg' issue, i added this in to mimick the look of google calendar. i think
many people appreciate this, but i think it should be less part of the core of
fullcalendar. in the next release i will put the '.nobg' css in examples/gcal.html
and attaching the 'nobg' js className there as well.

for the showTime issue, yes, thanks to your post, i just realized the general option
'showTime' has no effect over gcal events. it should behave just like any other event

thanks for pointing these things out
Status: Accepted
Sep 21, 2009
Project Member #2 adamrs...@gmail.com
just came out with 1.3. showTime is no longer in the API (look at allDay instead).

also, removed the default 'nobg' className for gcal events

let me know if any other problems/suggestions. thanks!
Status: Fixed
Aug 13, 2013
Project Member #3 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Implemented
Aug 13, 2013
Project Member #4 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Released