|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
/* globals define, app, socket, templates, translator */
|
|
|
|
|
/* globals define, app, socket, templates */
|
|
|
|
|
|
|
|
|
|
define('forum/topic/move', function() {
|
|
|
|
|
|
|
|
|
@ -46,6 +46,7 @@ define('forum/topic/move', function() {
|
|
|
|
|
|
|
|
|
|
function parseModal(categories, callback) {
|
|
|
|
|
templates.parse('partials/move_thread_modal', {categories: []}, function(html) {
|
|
|
|
|
require(['translator'], function(translator) {
|
|
|
|
|
translator.translate(html, function(html) {
|
|
|
|
|
modal = $(html);
|
|
|
|
|
categories.forEach(function(category) {
|
|
|
|
@ -56,6 +57,7 @@ define('forum/topic/move', function() {
|
|
|
|
|
callback();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function buildRecursive(parentEl, category, level) {
|
|
|
|
|