loadControllers.js
640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
define(
[
'controllers/data',
'controllers/maxCols',
'controllers/addField',
'controllers/cellSortable',
'controllers/gutterDroppable',
'controllers/rowsSortable',
'controllers/undo',
'controllers/updateFieldOrder'
],
function
(
Data,
MaxCols,
AddField,
CellSortable,
GutterDroppable,
RowsSortable,
Undo,
UpdateFieldOrder
)
{
var controller = Marionette.Object.extend( {
initialize: function() {
new MaxCols();
new Data();
new AddField();
new CellSortable();
new GutterDroppable();
new RowsSortable();
new Undo();
new UpdateFieldOrder();
}
});
return controller;
} );