Fix IE javascript issue

This commit is contained in:
Frederic Guillot
2015-02-20 21:47:05 -05:00
parent 7c2bf746f2
commit 4a71a6fc09
2 changed files with 2 additions and 2 deletions

View File

@@ -281,7 +281,7 @@ Kanboard.Board = (function() {
var ownerId = item.getAttribute("data-owner-id");
var dueDate = item.getAttribute("data-due-date");
var categoryId = item.getAttribute("data-category-id");
var recent = item.matches(".task-board-recent");
var recent = $(item).hasClass("task-board-recent");
if (ownerId != selectedUserId && selectedUserId != -1) {
item.style.display = "none";