Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 5b5ec23

Browse files
committed
Adding selectors for feed and users menu items.
1 parent 9a62f4f commit 5b5ec23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/layouts/layout.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,14 @@ echo $this->doctype().PHP_EOL;
267267
'core/public/images/icons/user.png'
268268
); ?>"/><span> <?php echo $this->t('My folders'); ?></span></a>
269269
</li>
270-
<li <?php if ($this->activemenu == 'user') {
270+
<li id="menuUsers" <?php if ($this->activemenu == 'user') {
271271
echo 'class="active"';
272272
} ?> onclick="window.location = '<?php echo $this->baseUrl('user'); ?>'">
273273
<a href="<?php echo $this->baseUrl('user'); ?>"><img alt="" src="<?php echo $this->baseUrl(
274274
'core/public/images/icons/users.png'
275275
); ?>"/><span> <?php echo $this->t('Users'); ?></span></a>
276276
</li>
277-
<li <?php if ($this->activemenu == 'feed') {
277+
<li id="menuFeed" <?php if ($this->activemenu == 'feed') {
278278
echo 'class="active"';
279279
} ?> onclick="window.location = '<?php echo $this->baseUrl('feed'); ?>'">
280280
<a href="<?php echo $this->baseUrl('feed'); ?>"><img alt="" src="<?php echo $this->baseUrl(

0 commit comments

Comments
 (0)