mirror of
https://github.com/friendica/friendica
synced 2024-11-10 08:22:57 +00:00
Standards
This commit is contained in:
parent
57366e391f
commit
588f87bf79
1 changed files with 13 additions and 13 deletions
|
@ -4,7 +4,7 @@
|
|||
$("nav").bind('nav-update', function(e,data){
|
||||
var elm = $('#pending-update');
|
||||
var register = $(data).find('register').text();
|
||||
if (register=="0") { register=""; }
|
||||
if (register=="0") { register = ""; }
|
||||
elm.html(register);
|
||||
});
|
||||
});
|
||||
|
@ -14,11 +14,11 @@
|
|||
<h3><a href="{{$admurl}}">{{$admtxt}}</a></h3>
|
||||
|
||||
<ul role="menu">
|
||||
{{foreach $subpages as $name=>$item}}
|
||||
{{foreach $subpages as $name => $item}}
|
||||
<li role="menuitem" class="{{$item.2}}">
|
||||
<a href="{{$item.0}}" {{if $item.accesskey}}accesskey="{{$item.accesskey}}"{{/if}}>
|
||||
{{$item.1}}
|
||||
{{if $name=="users"}}
|
||||
{{if $name == "users"}}
|
||||
<span id="pending-update" class="badge pull-right"></span>
|
||||
{{/if}}
|
||||
</a>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<div class="widget">
|
||||
<h3>{{$plugadmtxt}}</h3>
|
||||
<ul role="menu">
|
||||
{{foreach $admin.plugins_admin as $name=>$item}}
|
||||
{{foreach $admin.plugins_admin as $name => $item}}
|
||||
<li role="menuitem" class="{{$item.2}}">
|
||||
<a href="{{$item.0}}" {{if $item.accesskey}}accesskey="{{$item.accesskey}}"{{/if}}>
|
||||
{{$item.1}}
|
||||
|
|
Loading…
Reference in a new issue