Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 1... Línea 1...
1
/**
1
/**
2
 * Section drag and drop.
2
 * Section drag and drop.
3
 *
3
 *
-
 
4
 * TODO: remove this module as part of MDL-83627.
-
 
5
 *
4
 * @class M.course.dragdrop.section
6
 * @class M.course.dragdrop.section
5
 * @constructor
7
 * @constructor
6
 * @extends M.core.dragdrop
8
 * @extends M.core.dragdrop
7
 */
9
 */
8
var DRAGSECTION = function() {
10
var DRAGSECTION = function() {
9
    DRAGSECTION.superclass.constructor.apply(this, arguments);
11
    DRAGSECTION.superclass.constructor.apply(this, arguments);
10
};
12
};
-
 
13
 
-
 
14
Y.log(
-
 
15
    'YUI M.course.dragdrop.section is deprecated. Please, add support_components to your course format.',
-
 
16
    'warn',
-
 
17
    'moodle-course-coursebase'
-
 
18
);
-
 
19
 
11
Y.extend(DRAGSECTION, M.core.dragdrop, {
20
Y.extend(DRAGSECTION, M.core.dragdrop, {
12
    sectionlistselector: null,
21
    sectionlistselector: null,
Línea 13... Línea 22...
13
 
22
 
14
    initializer: function() {
23
    initializer: function() {