Add missing 'global' variable declaration

This commit is contained in:
Micheil Smith
2014-04-08 19:57:49 +01:00
parent 14d0081fdf
commit 2c2e5de911

View File

@@ -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;
});
});