open links correctly in contacts app

pull/1/head
ansuz 2017-11-20 14:06:19 +01:00
parent 7441a68fb9
commit a8d5a68eb5
1 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,14 @@ define([
// remove potentially malicious elements
$d.find('script, iframe, object, applet, video, audio').remove();
// override link clicking, because we're in an iframe
$d.find('a').each(function () {
var href = $(this).click(function (e) {
e.preventDefault();
window.open(href);
}).attr('href');
});
// activate media-tags
$d.find('media-tag').each(function (i, e) { MediaTag(e); });
} catch (e) {