Add a board selector instead of the list of projects

This commit is contained in:
Frédéric Guillot
2014-06-20 21:59:59 -03:00
parent 08621f99e6
commit b513313c2f
12 changed files with 62 additions and 19 deletions

View File

@@ -485,7 +485,7 @@ nav .active a {
/* board */
.page-header.board {
margin-bottom: 0;
margin-bottom: 5px;
}
.project-menu li {

View File

@@ -190,6 +190,10 @@
$(function() {
board_load_events();
filter_load_events();
$("#form-board-selector").change(function() {
window.location = "?controller=board&action=show&project_id=" + $(this).val();
});
});
}());