From 757e0a9046a275c83875ee61614d10209733a384 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 11 Jul 2013 09:56:09 -0400 Subject: [PATCH] fixed 3d filter --- dashboard-ui/scripts/movies.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/movies.js b/dashboard-ui/scripts/movies.js index 8235be8e2..2b242e17a 100644 --- a/dashboard-ui/scripts/movies.js +++ b/dashboard-ui/scripts/movies.js @@ -152,7 +152,7 @@ $('#chk3D', this).on('change', function () { query.StartIndex = 0; - query.Is3D = this.checked ? this.getAttribute('data-filter') : null; + query.Is3D = this.checked ? true : null; reloadItems(page); });