From 030d702a7212bcf3cdf4676350560e97b0544b6f Mon Sep 17 00:00:00 2001 From: Tobias Sjondin Date: Wed, 9 Jul 2014 08:38:28 +0200 Subject: [PATCH] Added filterable to summary and histogram controllers Change-Id: Iadf24d109c586b2fb6d1ec555ca29e56f7de62d9 Signed-off-by: Tobias Sjondin --- modules/reports/controllers/histogram.php | 3 +++ modules/reports/controllers/summary.php | 3 +++ 2 files changed, 6 insertions(+) diff --git a/modules/reports/controllers/histogram.php b/modules/reports/controllers/histogram.php index 7f0c7cd90..4e8e28fd6 100644 --- a/modules/reports/controllers/histogram.php +++ b/modules/reports/controllers/histogram.php @@ -42,7 +42,10 @@ class Histogram_Controller extends Base_reports_Controller $this->template->js[] = 'application/media/js/jquery.datePicker.js'; $this->template->js[] = 'application/media/js/jquery.timePicker.js'; $this->template->js[] = $this->add_path('reports/js/common.js'); + $this->template->js[] = 'application/media/js/lib.set.js'; + $this->template->js[] = 'application/media/js/jquery.filterable.js'; + $this->template->css[] = 'application/media/css/jquery.filterable.css'; $this->template->css[] = $this->add_path('reports/css/datePicker.css'); $this->js_strings .= reports::js_strings(); diff --git a/modules/reports/controllers/summary.php b/modules/reports/controllers/summary.php index 3f421b381..9fa5a7f08 100644 --- a/modules/reports/controllers/summary.php +++ b/modules/reports/controllers/summary.php @@ -72,7 +72,10 @@ class Summary_Controller extends Base_reports_Controller $this->template->js[] = 'application/media/js/jquery.timePicker.js'; $this->template->js[] = $this->add_path('reports/js/common.js'); $this->template->js[] = $this->add_path('summary/js/summary.js'); + $this->template->js[] = 'application/media/js/lib.set.js'; + $this->template->js[] = 'application/media/js/jquery.filterable.js'; + $this->template->css[] = 'application/media/css/jquery.filterable.css'; $this->template->css[] = $this->add_path('reports/css/datePicker.css'); $this->js_strings .= reports::js_strings(); -- 2.11.4.GIT