clipbucket/upload/styles/cbv3/layout/javascript.html
Arslan Hassan 5962836294 Added : template.php as template file
Added : function filters files replacing function hooks
Added : add_admin_menu a whole new function and replaced all existing functions with new
Added : New Admin Area with Bootstrap and new icons
Added : functions for widgets
Added : Sidebars and Widgets
2012-04-28 20:11:43 +00:00

23 lines
No EOL
611 B
HTML

<script type="text/javascript">
$(document).ready(function(){
//Adding Comment Hover effect
$('.comment').bind('mouseover',function(e){
$(this).find('.comment-options').show();
});
//Adding Comment Mouse-leave effect
$('.comment').bind('mouseout',function(e){
$(this).find('.comment-options').hide();
});
//Init Login Modal box
$('#login-modal').modal({
show : false
});
//Init Drop Downs
$('.cb-dropdown').dropdown()
});
</script>