BigW Consortium Gitlab

_projects_top_menu.html.haml 699 Bytes
Newer Older
gitlabhq committed
1 2
%div.top_project_menu
  %span= link_to 'All', projects_path, :class => current_page?(projects_path) ? "current" : nil
gitlabhq committed
3 4
  - if current_user.can_create_project?
    %span= link_to "New Project", new_project_path, :class => current_page?(:controller => "projects", :action => "new") ? "current" : nil
gitlabhq committed
5 6 7 8 9 10 11 12 13
  %span.right
    = link_to_function(image_tag("list_view_icon.jpg"), "switchProjectView()", :style => "border:none;box-shadow:none;")

:javascript
  function switchProjectView(){
    $(".tile").toggle();
    $(".list").toggle();
    if($(".tile").is(":visible")){
      $.cookie('project_view', 'tile', { expires: 14 });
Nihad Abbasov committed
14
    } else {
gitlabhq committed
15 16 17
      $.cookie('project_view', 'list', { expires: 14 });
    }
  }