| Issue 1656: | HTML scaped when event is 15 minutes long | |
| 3 people starred this issue and may be notified of changes. | Back to list |
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
Jun 13, 2013
same issue here!!
Jun 13, 2013
I've got the same problem. Thanks in advance for a solution....
Jun 13, 2013
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
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
I think I did this with $('el').text($('el').html()) or inverted, I don't
remember. 'el' is full calendar title selector.
|
|
| ► Sign in to add a comment |