Assignee change from the board is now a popover

This commit is contained in:
Frédéric Guillot
2014-05-17 20:25:25 -04:00
parent f9c24f3c2c
commit aed7fb5cf5
5 changed files with 78 additions and 12 deletions

View File

@@ -48,4 +48,9 @@ class Request
{
return isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'POST';
}
public function isAjax()
{
return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest';
}
}