From 2c2e5de911b6b2d5495e0aae89b5654dbc6a59eb Mon Sep 17 00:00:00 2001 From: Micheil Smith Date: Tue, 8 Apr 2014 19:57:49 +0100 Subject: [PATCH] Add missing 'global' variable declaration --- public/src/forum/category.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/src/forum/category.js b/public/src/forum/category.js index 7182aa19dc..adb5bc34c7 100644 --- a/public/src/forum/category.js +++ b/public/src/forum/category.js @@ -1,5 +1,5 @@ "use strict"; -/* global define, config, templates, app, ajaxify, socket, translator */ +/* global define, config, templates, app, utils, ajaxify, socket, translator */ define(['composer', 'forum/pagination', 'share', 'navigator'], function(composer, pagination, share, navigator) { var Category = {}, @@ -331,4 +331,4 @@ define(['composer', 'forum/pagination', 'share', 'navigator'], function(composer }; return Category; -}); \ No newline at end of file +});