Commit b5847c1f authored by Dayle Rees's avatar Dayle Rees

fixed logo bug

parent 95b4b092
...@@ -21,7 +21,12 @@ background-repeat:no-repeat; ...@@ -21,7 +21,12 @@ background-repeat:no-repeat;
background-position:5px -8px; background-position:5px -8px;
} }
.anbu-tabs li:first-child .anbu.hidden .anbu-tabs
{
background-image:none;
}
#anbu-open-tabs li:first-child
{ {
margin-left:6em; margin-left:6em;
} }
......
...@@ -116,6 +116,7 @@ var anbu = { ...@@ -116,6 +116,7 @@ var anbu = {
anbu.el.open_tabs.fadeIn(200); anbu.el.open_tabs.fadeIn(200);
}) })
anbu.el.main.animate({width: '100%'}, 700); anbu.el.main.animate({width: '100%'}, 700);
anbu.el.main.removeClass('hidden');
}, },
// HIDE() // HIDE()
...@@ -124,9 +125,11 @@ var anbu = { ...@@ -124,9 +125,11 @@ var anbu = {
hide : function () hide : function ()
{ {
anbu.close_window(); anbu.close_window();
anbu.el.window.slideUp(400, function () { anbu.el.window.slideUp(400, function () {
anbu.close_window(); anbu.close_window();
anbu.el.main.addClass('hidden');
anbu.el.open_tabs.fadeOut(200, function () { anbu.el.open_tabs.fadeOut(200, function () {
anbu.el.closed_tabs.fadeIn(200); anbu.el.closed_tabs.fadeIn(200);
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment