Browse Source

allow .svg for 'image' MediaType. Closes NUKnightLab/StoryJS-Core#6 thanks @inkbug sorry for epic delay

issue580
Joe Germuska 11 years ago
parent
commit
22b73ea734
  1. 2
      source/js/Core/Media/VMM.MediaType.js

2
source/js/Core/Media/VMM.MediaType.js

@ -94,7 +94,7 @@ if(typeof VMM != 'undefined' && typeof VMM.MediaType == 'undefined') {
media.link = d; media.link = d;
media.id = VMM.ExternalAPI.instagram.getInstagramIdFromUrl(d) media.id = VMM.ExternalAPI.instagram.getInstagramIdFromUrl(d)
success = Boolean(media.id); success = Boolean(media.id);
} else if (d.match(/jpg|jpeg|png|gif/i) || d.match("staticmap") || d.match("yfrog.com") || d.match("twitpic.com")) { } else if (d.match(/jpg|jpeg|png|gif|svg/i) || d.match("staticmap") || d.match("yfrog.com") || d.match("twitpic.com")) {
media.type = "image"; media.type = "image";
media.id = d; media.id = d;
success = true; success = true;

Loading…
Cancel
Save