mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-06 07:28:29 -05:00
W3C resource-priorities have been abandonned
https://github.com/FreshRSS/FreshRSS/issues/1222
This commit is contained in:
@@ -309,7 +309,7 @@ class FreshRSS_Feed extends Minz_Model {
|
||||
$elinks[$elink] = '1';
|
||||
$mime = strtolower($enclosure->get_type());
|
||||
if (strpos($mime, 'image/') === 0) {
|
||||
$content .= '<p class="enclosure"><img lazyload="" src="' . $elink . '" alt="" /></p>';
|
||||
$content .= '<p class="enclosure"><img src="' . $elink . '" alt="" /></p>';
|
||||
} elseif (strpos($mime, 'audio/') === 0) {
|
||||
$content .= '<p class="enclosure"><audio preload="none" src="' . $elink . '" controls="controls"></audio> <a download="" href="' . $elink . '">💾</a></p>';
|
||||
} elseif (strpos($mime, 'video/') === 0) {
|
||||
|
||||
@@ -182,10 +182,9 @@ function customSimplePie() {
|
||||
'onmouseover', 'onmousemove', 'onmouseout', 'onfocus', 'onblur',
|
||||
'onkeypress', 'onkeydown', 'onkeyup', 'onselect', 'onchange', 'seamless', 'sizes', 'srcset')));
|
||||
$simplePie->add_attributes(array(
|
||||
'img' => array('lazyload' => '', 'postpone' => ''), //http://www.w3.org/TR/resource-priorities/
|
||||
'audio' => array('lazyload' => '', 'postpone' => '', 'preload' => 'none'),
|
||||
'iframe' => array('lazyload' => '', 'postpone' => '', 'sandbox' => 'allow-scripts allow-same-origin'),
|
||||
'video' => array('lazyload' => '', 'postpone' => '', 'preload' => 'none'),
|
||||
'audio' => array('preload' => 'none'),
|
||||
'iframe' => array('sandbox' => 'allow-scripts allow-same-origin'),
|
||||
'video' => array('preload' => 'none'),
|
||||
));
|
||||
$simplePie->set_url_replacements(array(
|
||||
'a' => 'href',
|
||||
|
||||
@@ -1027,12 +1027,6 @@ freshrssLoadMoreEvent.initEvent('freshrss:load-more', true, true);
|
||||
function init_load_more(box) {
|
||||
box_load_more = box;
|
||||
|
||||
if (!context.does_lazyload) {
|
||||
$('img[postpone], audio[postpone], iframe[postpone], video[postpone]').each(function () {
|
||||
this.removeAttribute('postpone');
|
||||
});
|
||||
}
|
||||
|
||||
document.body.dispatchEvent(freshrssLoadMoreEvent);
|
||||
|
||||
var $next_link = $("#load_more");
|
||||
|
||||
Reference in New Issue
Block a user