From dbcb6f97964589e856bf9e7bc6fcbf57418860ef Mon Sep 17 00:00:00 2001 From: Manuel Valle Date: Wed, 20 Jan 2016 10:02:34 -0600 Subject: [PATCH] Update events.js Same problem as [#4069](https://github.com/NodeBB/NodeBB/pull/4069). Added a **translator** variable refering to **translator** module instead of global *translator*. This solves warnings editing posts with *composer*. --- public/src/client/topic/events.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/public/src/client/topic/events.js b/public/src/client/topic/events.js index ba6313c4b4..c7c2c6e270 100644 --- a/public/src/client/topic/events.js +++ b/public/src/client/topic/events.js @@ -130,10 +130,12 @@ define('forum/topic/events', [ }; templates.parse('partials/topic/post-editor', editData, function(html) { - translator.translate(html, function(translated) { - html = $(translated); - editorEl.replaceWith(html); - html.find('.timeago').timeago(); + require(['translator'], function(translator) { + translator.translate(html, function(translated) { + html = $(translated); + editorEl.replaceWith(html); + html.find('.timeago').timeago(); + }); }); });