MDL-33926 Add window scrolling when drag/dropping

This commit is contained in:
Andrew Robert Nicols 2012-06-22 08:11:06 +01:00 committed by Aparup Banerjee
parent 4c8926c7c3
commit 26992cf171
2 changed files with 5 additions and 5 deletions

View file

@ -91,7 +91,7 @@ YUI.add('moodle-course-dragdrop', function(Y) {
// Keep it inside the .course-content
constrain: '#'+CSS.PAGECONTENT,
stickY: true
});
}).plug(Y.Plugin.DDWinScroll);
}
}
}, this);
@ -306,7 +306,7 @@ YUI.add('moodle-course-dragdrop', function(Y) {
}).plug(Y.Plugin.DDConstrained, {
// Keep it inside the .course-content
constrain: '#'+CSS.PAGECONTENT
});
}).plug(Y.Plugin.DDWinScroll);
}
}, this);
},
@ -411,4 +411,4 @@ YUI.add('moodle-course-dragdrop', function(Y) {
M.course.init_section_dragdrop = function(params) {
new DRAGSECTION(params);
}
}, '@VERSION@', {requires:['base', 'node', 'io', 'dom', 'dd', 'moodle-core-dragdrop', 'moodle-enrol-notification', 'moodle-course-coursebase']});
}, '@VERSION@', {requires:['base', 'node', 'io', 'dom', 'dd', 'dd-scroll', 'moodle-core-dragdrop', 'moodle-enrol-notification', 'moodle-course-coursebase']});

View file

@ -87,7 +87,7 @@ YUI.add('moodle-core-blocks', function(Y) {
}).plug(Y.Plugin.DDConstrained, {
// Keep it inside the .course-content
constrain: '#'+CSS.PAGECONTENT
});
}).plug(Y.Plugin.DDWinScroll);
}
}, this);
}, this);
@ -267,5 +267,5 @@ YUI.add('moodle-core-blocks', function(Y) {
M.core_blocks.init_dragdrop = function(params) {
new DRAGBLOCK(params);
}
}, '@VERSION@', {requires:['base', 'node', 'io', 'dom', 'dd', 'moodle-core-dragdrop', 'moodle-enrol-notification']});
}, '@VERSION@', {requires:['base', 'node', 'io', 'dom', 'dd', 'dd-scroll', 'moodle-core-dragdrop', 'moodle-enrol-notification']});