Using rel=external instead of class=external for jOverlay title link
This commit is contained in:
parent
53bed00f90
commit
3c5586d4bd
@ -248,9 +248,7 @@ class Attachment extends AttachmentListItem
|
|||||||
$this->out->elementStart('div', array('id' => 'attachment_view',
|
$this->out->elementStart('div', array('id' => 'attachment_view',
|
||||||
'class' => 'hentry'));
|
'class' => 'hentry'));
|
||||||
$this->out->elementStart('div', 'entry-title');
|
$this->out->elementStart('div', 'entry-title');
|
||||||
$this->out->elementStart('a', $this->linkAttr());
|
$this->out->element('a', $this->linkAttr(), $this->linkTitle());
|
||||||
$this->out->element('span', null, $this->linkTitle());
|
|
||||||
$this->out->elementEnd('a');
|
|
||||||
$this->out->elementEnd('div');
|
$this->out->elementEnd('div');
|
||||||
|
|
||||||
$this->out->elementStart('div', 'entry-content');
|
$this->out->elementStart('div', 'entry-content');
|
||||||
@ -296,7 +294,7 @@ class Attachment extends AttachmentListItem
|
|||||||
}
|
}
|
||||||
|
|
||||||
function linkAttr() {
|
function linkAttr() {
|
||||||
return array('class' => 'external', 'href' => $this->attachment->url);
|
return array('rel' => 'external', 'href' => $this->attachment->url);
|
||||||
}
|
}
|
||||||
|
|
||||||
function linkTitle() {
|
function linkTitle() {
|
||||||
|
@ -1326,7 +1326,7 @@ margin-bottom:0;
|
|||||||
padding:11px;
|
padding:11px;
|
||||||
min-height:auto;
|
min-height:auto;
|
||||||
}
|
}
|
||||||
#jOverlayContent .external span {
|
#jOverlayContent .entry-title {
|
||||||
display:block;
|
display:block;
|
||||||
margin-bottom:11px;
|
margin-bottom:11px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user