Add font awesome icon to full calendar title

后端 未结 6 1149
不思量自难忘°
不思量自难忘° 2020-12-15 23:41

I\'m using wordpress, formidable forms and full calendar to create a bespoke calendar solution

I have everything working except for I\'d like to add a font awesome i

6条回答
  •  臣服心动
    2020-12-15 23:44

    Had the same issue with the FullCalendar 4.3.1. Hope it helps.

    eventRender: function (info) {
        let icon = info.event.extendedProps.icon;
        let title = $(info.el).first('.fc-title-wrap');
        if (icon !== undefined) {
            title.prepend("");
        }
    }
    

提交回复
热议问题