Fix issue with the dropdown menu and overflow container

This commit is contained in:
Frederic Guillot
2015-02-21 13:02:44 -05:00
parent 4a71a6fc09
commit 0771fcbde7
5 changed files with 12 additions and 22 deletions

View File

@@ -235,7 +235,7 @@ Kanboard.Board = (function() {
"position": position
}),
success: function(data) {
$("#board").remove();
$("#board-container").remove();
$("#main").append(data);
Kanboard.InitAfterAjax();
board_load_events();
@@ -254,7 +254,7 @@ Kanboard.Board = (function() {
url: $("#board").attr("data-check-url"),
statusCode: {
200: function(data) {
$("#board").remove();
$("#board-container").remove();
$("#main").append(data);
Kanboard.InitAfterAjax();
board_unload_events();