Skip to content

Commit

Permalink
update list of attribute affected by absolute urls
Browse files Browse the repository at this point in the history
  • Loading branch information
cbou committed Mar 4, 2015
1 parent d9090d2 commit bae1926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils/absolute-urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ module.exports = absolute;
function absolute(path, $) {
var parts = url.parse(path);
var remote = parts.protocol + '//' + parts.hostname;
$('a[href], img[src]').each(abs);

$('a[href], img[src], script[src], link[href], source[src], track[src], img[src], frame[src], iframe[src]').each(abs);
function abs(i, el) {
var $el = $(el);
var key = null;
Expand Down

0 comments on commit bae1926

Please sign in to comment.