Display subtask time tracking in the calendar

This commit is contained in:
Frederic Guillot
2015-02-15 16:34:56 -05:00
parent e84abb5498
commit 2491ada0db
8 changed files with 250 additions and 62 deletions

View File

@@ -156,7 +156,7 @@ var Kanboard = (function() {
cache: false,
url: $("body").data("status-url"),
statusCode: {
401: function(data) {
401: function() {
window.location = $("body").data("login-url");
}
}
@@ -195,7 +195,7 @@ var Kanboard = (function() {
// Tooltip for column description
$(".column-tooltip").tooltip({
content: function(e) {
content: function() {
return '<div class="markdown">' + $(this).attr("title") + '</div>';
}
});