diff --git a/ChangeLog b/ChangeLog
index 7a95ae1b9..1bdc5bc2d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -26,7 +26,7 @@ Improvements:
* Add dropdown menu with inline popup for all task actions
* Change sidebar style
* Change task summary layout
-* Use inline popup for subtasks modification
+* Use inline popup for subtasks, categories
* Move homepage menus to the user dropdown
* Have a new task assigned to the creator by default instead of "no assignee"
* Show progress for task links in board tooltips
diff --git a/app/Template/category/edit.php b/app/Template/category/edit.php
index 1aae2f2a9..d788f6738 100644
--- a/app/Template/category/edit.php
+++ b/app/Template/category/edit.php
@@ -2,7 +2,7 @@
= t('Category modification for the project "%s"', $project['name']) ?>
-
\ No newline at end of file
diff --git a/app/Template/category/index.php b/app/Template/category/index.php
index 4602f3b96..e99b6d52f 100644
--- a/app/Template/category/index.php
+++ b/app/Template/category/index.php
@@ -15,10 +15,10 @@
-
- = $this->url->link(t('Edit'), 'category', 'edit', array('project_id' => $project['id'], 'category_id' => $category_id)) ?>
+ = $this->url->link(t('Edit'), 'category', 'edit', array('project_id' => $project['id'], 'category_id' => $category_id), false, 'popover') ?>
-
- = $this->url->link(t('Remove'), 'category', 'confirm', array('project_id' => $project['id'], 'category_id' => $category_id)) ?>
+ = $this->url->link(t('Remove'), 'category', 'confirm', array('project_id' => $project['id'], 'category_id' => $category_id), false, 'popover') ?>
diff --git a/app/Template/category/remove.php b/app/Template/category/remove.php
index ce5897851..cad58d372 100644
--- a/app/Template/category/remove.php
+++ b/app/Template/category/remove.php
@@ -11,7 +11,7 @@
= $this->url->link(t('Yes'), 'category', 'remove', array('project_id' => $project['id'], 'category_id' => $category['id']), true, 'btn btn-red') ?>
= t('or') ?>
- = $this->url->link(t('cancel'), 'category', 'index', array('project_id' => $project['id'])) ?>
+ = $this->url->link(t('cancel'), 'category', 'index', array('project_id' => $project['id']), false, 'close-popover') ?>
\ No newline at end of file