2012-05-04 11:11:28 +00:00
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
$('.search').tooltip({
|
|
|
|
placement: "bottom"
|
|
|
|
});
|
|
|
|
});
|
2012-04-06 10:06:57 +00:00
|
|
|
$(document).on('click', '.orbit-bar-search', function (){
|
|
|
|
if ($(this).parents('.search').hasClass('visible')){
|
|
|
|
$(this).parents('.search').stop().animate({
|
|
|
|
'width':'28px',
|
|
|
|
});
|
|
|
|
$(this).parents('.search').css({
|
|
|
|
'background-color': 'transparent',
|
|
|
|
});
|
|
|
|
$(this).parents('.search').removeClass('visible');
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$(this).parents('.search').stop().animate({
|
|
|
|
'width':'265px',
|
|
|
|
});
|
|
|
|
$(this).parents('.search').css({
|
|
|
|
'background-color': 'rgba(0, 0, 0, 0.5)',
|
|
|
|
});
|
|
|
|
$(this).parents('.search').addClass('visible');
|
|
|
|
}
|
|
|
|
});
|