CSS ids and classes fixed in UAPPlugin
This commit is contained in:
parent
4ad931ad38
commit
e9feafc3ca
|
@ -87,7 +87,8 @@ abstract class UAPPlugin extends Plugin
|
||||||
if (!is_null($this->mediumRectangle)) {
|
if (!is_null($this->mediumRectangle)) {
|
||||||
|
|
||||||
$action->elementStart('div',
|
$action->elementStart('div',
|
||||||
array('class' => 'ad_medium-rectangle ad'));
|
array('id' => 'ad_medium-rectangle',
|
||||||
|
'class' => 'ad'));
|
||||||
|
|
||||||
$this->showMediumRectangle($action);
|
$this->showMediumRectangle($action);
|
||||||
|
|
||||||
|
@ -109,14 +110,16 @@ abstract class UAPPlugin extends Plugin
|
||||||
{
|
{
|
||||||
if (!is_null($this->leaderboard)) {
|
if (!is_null($this->leaderboard)) {
|
||||||
$action->elementStart('div',
|
$action->elementStart('div',
|
||||||
array('class' => 'ad_leaderboard ad'));
|
array('id' => 'ad_leaderboard',
|
||||||
|
'class' => 'ad'));
|
||||||
$this->showLeaderboard($action);
|
$this->showLeaderboard($action);
|
||||||
$action->elementEnd('div');
|
$action->elementEnd('div');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_null($this->rectangle)) {
|
if (!is_null($this->rectangle)) {
|
||||||
$action->elementStart('div',
|
$action->elementStart('div',
|
||||||
array('class' => 'ad_rectangle ad'));
|
array('id' => 'ad_rectangle',
|
||||||
|
'class' => 'ad'));
|
||||||
$this->showRectangle($action);
|
$this->showRectangle($action);
|
||||||
$action->elementEnd('div');
|
$action->elementEnd('div');
|
||||||
}
|
}
|
||||||
|
@ -136,7 +139,8 @@ abstract class UAPPlugin extends Plugin
|
||||||
{
|
{
|
||||||
if (!is_null($this->wideSkyscraper)) {
|
if (!is_null($this->wideSkyscraper)) {
|
||||||
$action->elementStart('div',
|
$action->elementStart('div',
|
||||||
array('class' => 'ad_wide-skyscraper ad'));
|
array('id' => 'ad_wide-skyscraper',
|
||||||
|
'class' => 'ad'));
|
||||||
|
|
||||||
$this->showWideSkyscraper($action);
|
$this->showWideSkyscraper($action);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user