mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-19 22:12:54 +01:00
closes #5031
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/*global config, translator, componentHandler, define, socket, app, ajaxify, utils, bootbox, Slideout, NProgress, RELATIVE_PATH*/
|
||||
/*global config, componentHandler, define, socket, app, ajaxify, utils, bootbox, Slideout, NProgress, RELATIVE_PATH*/
|
||||
|
||||
(function() {
|
||||
var logoutTimer = 0;
|
||||
|
||||
@@ -76,9 +76,11 @@ define('admin/appearance/themes', function() {
|
||||
templates.parse('admin/partials/theme_list', {
|
||||
themes: themes
|
||||
}, function(html) {
|
||||
translator.translate(html, function(html) {
|
||||
instListEl.html(html);
|
||||
highlightSelectedTheme(config['theme:id']);
|
||||
require(['translator'], function(translator) {
|
||||
translator.translate(html, function(html) {
|
||||
instListEl.html(html);
|
||||
highlightSelectedTheme(config['theme:id']);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
/* globals define, app, socket, templates, translator */
|
||||
/* globals define, app, socket, templates */
|
||||
|
||||
define('forum/topic/flag', [], function() {
|
||||
|
||||
@@ -34,7 +34,9 @@ define('forum/topic/flag', [], function() {
|
||||
|
||||
function parseModal(callback) {
|
||||
templates.parse('partials/modals/flag_post_modal', {}, function(html) {
|
||||
translator.translate(html, callback);
|
||||
require(['translator'], function(translator) {
|
||||
translator.translate(html, callback);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
/* globals define, app, socket, templates, translator */
|
||||
/* globals define, app, socket, templates */
|
||||
|
||||
define('forum/topic/move', function() {
|
||||
|
||||
@@ -46,14 +46,16 @@ define('forum/topic/move', function() {
|
||||
|
||||
function parseModal(categories, callback) {
|
||||
templates.parse('partials/move_thread_modal', {categories: []}, function(html) {
|
||||
translator.translate(html, function(html) {
|
||||
modal = $(html);
|
||||
categories.forEach(function(category) {
|
||||
if (!category.link) {
|
||||
buildRecursive(modal.find('.category-list'), category, '');
|
||||
}
|
||||
require(['translator'], function(translator) {
|
||||
translator.translate(html, function(html) {
|
||||
modal = $(html);
|
||||
categories.forEach(function(category) {
|
||||
if (!category.link) {
|
||||
buildRecursive(modal.find('.category-list'), category, '');
|
||||
}
|
||||
});
|
||||
callback();
|
||||
});
|
||||
callback();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user