AddToCalendar / addtocalendar

Free customizable JavaScript widget "Add to Calendar" for event page. It allows users to easily schedule the event in their calendar. Learn more: https://addtocalendar.com
87 stars 43 forks source link

ie11 not loading #33

Closed uqcgreen closed 7 years ago

uqcgreen commented 7 years ago

Hi there,

Couldn't get this to load on ie11. Due to tag_class[0] not existing.

I changed:

            var tag_class = dom[tagnum].className;

            if (tag_class.length && tag_class.split(" ").indexOf('addtocalendar') != -1) {

                var settings = addtocalendar.loadSettings(dom[tagnum]);

To:

     var tag_class = dom[tagnum].className;

            if (tag_class && tag_class.length && tag_class.split(" ").indexOf('addtocalendar') != -1) {

                var settings = addtocalendar.loadSettings(dom[tagnum]);

And it sprang into life.

atc-master commented 7 years ago

Fixed.