Make project creation form a inline popup

This commit is contained in:
Frederic Guillot
2016-01-31 20:14:51 -05:00
parent 0bc51620c7
commit 271543431e
7 changed files with 40 additions and 11 deletions

View File

@@ -189,10 +189,9 @@ abstract class Base extends \Kanboard\Core\Base
*/
protected function taskLayout($template, array $params)
{
$params['ajax'] = $this->request->isAjax();
$content = $this->template->render($template, $params);
if ($params['ajax']) {
if ($this->request->isAjax()) {
return $content;
}