User tests: Successful: Unsuccessful:
When #4694 was committed there were some things done wrong due to
1. There were some inconsistencies in the admin area namely #4694 and #4788
2. The initial proposal actually needed javascript to function.
As none of the above exist anymore we don’t need the javascript part as well.
There shouldn’t be any visual or functional changes
Log in to the admin area
Create a new article
Is the joomla icon and the cog icon on the navigation disabled and not functional?
If yes test is successful
Labels |
Added:
?
|
Category | ⇒ | JavaScript |
@dgt41 Yep, looks like you wanted to update your branch with latest staging? But it applied all commits after your own one, which will mess up the branch.
There are two ways to properly update a branch:
3.4-dev
to update it with the latest changes from staging
.The commits still look a bit funny, but the resulting diff (https://github.com/joomla/joomla-cms/pull/4843/files) looks about correct. So it will work fine.
@infograf768 JM can you take a look at this one? This actually is a better implementation of #4694 (now everything is done server side so no javascript code is required). It already got one successful test...
This works.
I suggest to change to
<a class="admin-logo <?php echo ($hidden ? 'disabled' : ''); ?>" <?php echo ($hidden ? '' : 'href="' . $this->baseurl . '"'); ?>><span class="icon-joomla"></span></a>
and further down
<a class="<?php echo ($hidden ? ' disabled' : 'dropdown-toggle'); ?>" data-toggle="<?php echo ($hidden ? '' : 'dropdown'); ?>"
<?php echo ($hidden ? '' : 'href="#"'); ?>><span class="icon-cog"></span>
this to be consistent in the code style.
@infograf768 Thanks! It’s a lot better now
One more test
test
works good for me
Thanks. Merging
Status | Pending | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2014-11-02 11:19:42 |
@Bakual is this broken now?