mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* removed "tabs blink" while pageload
This commit is contained in:
parent
19ba2d4d63
commit
6f634c9317
2 changed files with 2 additions and 2 deletions
|
|
@ -931,7 +931,6 @@ function loadLists(onInit, updAccess)
|
|||
else $('#btnPublish').removeClass('mtt-item-checked');
|
||||
//if(curList.published)
|
||||
$('#rss_icon').show().find('a').attr('href', 'feed.php?list='+curList.id);
|
||||
$('#page_tasks').show();
|
||||
}
|
||||
else {
|
||||
curList = 0;
|
||||
|
|
@ -944,6 +943,7 @@ function loadLists(onInit, updAccess)
|
|||
ti += '<li class="mtt-tabs-button menu-owner"><a href="#" id="mylists" onClick="btnMenu(this);return false;"><span><img src="images/arrdown.gif"></span></a></li>';
|
||||
$('#lists>ul').html(ti);
|
||||
$('#lists').show();
|
||||
if(!flag.needAuth || flag.isLogged || curList) $('#page_tasks').show();
|
||||
});
|
||||
$('#page_tasks').hide();
|
||||
if(updAccess) updateAccessStatus();
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ $().ajaxStop( function(r,s) {$("#loading").fadeOut();} );
|
|||
|
||||
<br clear="all">
|
||||
|
||||
<div id="page_tasks">
|
||||
<div id="page_tasks" style="display:none">
|
||||
|
||||
<div id="lists">
|
||||
<ul class="mtt-tabs"></ul>
|
||||
|
|
|
|||
Loading…
Reference in a new issue