mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-15 18:26:15 +01:00
moved src/client/modules/admin/selectable to src/admin/modules/selectable #2250
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
/*global define, socket, app, admin, utils, RELATIVE_PATH*/
|
/*global define, socket, app, admin, utils, RELATIVE_PATH*/
|
||||||
|
|
||||||
define('admin/manage/flags', ['infinitescroll', 'admin/selectable'], function(infinitescroll, selectable) {
|
define('admin/manage/flags', ['infinitescroll', 'admin/modules/selectable'], function(infinitescroll, selectable) {
|
||||||
var Flags = {};
|
var Flags = {};
|
||||||
|
|
||||||
Flags.init = function() {
|
Flags.init = function() {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
/*global define, socket, app, admin, utils, bootbox, RELATIVE_PATH*/
|
/*global define, socket, app, admin, utils, bootbox, RELATIVE_PATH*/
|
||||||
|
|
||||||
define('admin/manage/tags', ['infinitescroll', 'admin/selectable'], function(infinitescroll, selectable) {
|
define('admin/manage/tags', ['infinitescroll', 'admin/modules/selectable'], function(infinitescroll, selectable) {
|
||||||
var Tags = {},
|
var Tags = {},
|
||||||
timeoutId = 0;
|
timeoutId = 0;
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
/* global socket, define, templates, bootbox, app, ajaxify, */
|
/* global socket, define, templates, bootbox, app, ajaxify, */
|
||||||
define('admin/manage/users', ['admin/selectable'], function(selectable) {
|
define('admin/manage/users', ['admin/modules/selectable'], function(selectable) {
|
||||||
var Users = {};
|
var Users = {};
|
||||||
|
|
||||||
Users.init = function() {
|
Users.init = function() {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*globals define*/
|
/*globals define*/
|
||||||
|
|
||||||
define('admin/selectable', function() {
|
define('admin/modules/selectable', function() {
|
||||||
var selectable = {};
|
var selectable = {};
|
||||||
|
|
||||||
// modified from http://threedubmedia.com/code/event/drop/demo/selection
|
// modified from http://threedubmedia.com/code/event/drop/demo/selection
|
||||||
Reference in New Issue
Block a user