diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-08-10 16:54:36 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-08-10 16:54:36 -0700 |
commit | 06bdf8a4cfe9087573494c0b782a33d1e28ac043 (patch) | |
tree | 9ab3965bd0f0dc790bc30bee12b939e3866c82e9 /view/head.tpl | |
parent | 04e65823d70d448400d3be7f0b3244ea8658834d (diff) | |
download | volse-hubzilla-06bdf8a4cfe9087573494c0b782a33d1e28ac043.tar.gz volse-hubzilla-06bdf8a4cfe9087573494c0b782a33d1e28ac043.tar.bz2 volse-hubzilla-06bdf8a4cfe9087573494c0b782a33d1e28ac043.zip |
atom auto-discover, fix image preloading in ajax
Diffstat (limited to 'view/head.tpl')
-rw-r--r-- | view/head.tpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/view/head.tpl b/view/head.tpl index a2b55e0b5..ec67455d0 100644 --- a/view/head.tpl +++ b/view/head.tpl @@ -61,6 +61,9 @@ $('.wall-item-outside-wrapper',data).each(function() { var ident = $(this).attr('id'); if($('#' + ident).length == 0) { + $('img',this).each(function() { + $(this).attr('src',$(this).attr('dst')); + }); $('#' + prev).after($(this)); } else { |