Issue 1656: HTML scaped when event is 15 minutes long
Status:  WontFix
Owner: ----
Closed:  Aug 2013
Reported by juandavi...@gmail.com, Dec 28, 2012
I can't upload files. Google says:

Issue attachment storage quota exceeded.

See event lasting 15 minutes http://imgur.com/zHXDQ
See event lasting 30 minutes http://imgur.com/AOXN1

See that the one with 15 minutes appears scaped–is that the word?:

<b>Service</b>

Instead of being bold.
May 29, 2013
#1 huberpri...@gmail.com
That's the same issue i ran into...
If i have 15minute events, it doesn't render html-tags. also i'm wondering, why the end time isn't showing. I think there may be the problem.
Instead of "9:00-9:15 bla bla" it shows "9:00 - <b>bla bla</b>"...
Jun 13, 2013
#2 typoblog...@gmail.com
same issue here!!
Jun 13, 2013
#3 pe...@giftgruen.ch
I've got the same problem.
Thanks in advance for a solution....
Jun 13, 2013
#4 juandavi...@gmail.com
you could unescape html inspecting the title element and unescaping them:

$titles= $('.fc-event-title');
for( i = 0; i < $titles.size(); i++{
  $title = $($titles[i]);
  $title.html($title.text());
}
Aug 15, 2013
Project Member #5 adamrs...@gmail.com
event titles don't accept HTML in purpose. if you want to inject literal HTML, you can use the eventRender callback to have complete control. there are examples on the internet of how to do this.
Status: WontFix
Aug 15, 2013
#6 juandavi...@gmail.com
I think I did this with $('el').text($('el').html()) or inverted, I don't
remember. 'el' is full calendar title selector.