update todo list on welcome page + new menu layout (first try)
This commit is contained in:
42
jquery/databap.js
vendored
42
jquery/databap.js
vendored
@@ -205,16 +205,17 @@ function Databap()
|
||||
|
||||
//Expand menu
|
||||
self.$menu
|
||||
.stop()
|
||||
.animate
|
||||
(
|
||||
{width:'300px'/*, borderWidth:'10px'*/},
|
||||
'fast',
|
||||
function()
|
||||
{
|
||||
self.$menu.find('#menu_box').show('fast');
|
||||
}
|
||||
);
|
||||
.stop()
|
||||
.animate
|
||||
(
|
||||
{width:'300px'/*, borderWidth:'10px'*/},
|
||||
'fast',
|
||||
function()
|
||||
{
|
||||
self.$menu.find('#menu_box').show();
|
||||
$(this).addClass('opened');
|
||||
}
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -242,16 +243,17 @@ function Databap()
|
||||
//Reduce menu
|
||||
self.$menu.find('#menu_box').hide();
|
||||
self.$menu
|
||||
.stop()
|
||||
.animate
|
||||
(
|
||||
{width:'20px'/*, borderWidth:'0'*/},
|
||||
'fast',
|
||||
function()
|
||||
{
|
||||
self.$menu.find('#menu_title').show('fast');
|
||||
}
|
||||
);
|
||||
.stop()
|
||||
.animate
|
||||
(
|
||||
{width:'20px'/*, borderWidth:'0'*/},
|
||||
'fast',
|
||||
function()
|
||||
{
|
||||
self.$menu.find('#menu_title').show();
|
||||
$(this).removeClass('opened');
|
||||
}
|
||||
);
|
||||
openedMenu = false;
|
||||
closeMenu = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user