mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 16:32:43 +02:00
MDL-55322 assignfeedback_editpdf: Prevent scroll when moving comments
Prevent the default scroll behaviour when using gestures to move comments on the mobile site.
This commit is contained in:
parent
d1a3ea62ef
commit
243ddbcf50
@ -2641,6 +2641,7 @@ var COMMENT = function(editor, gradeid, pageno, x, y, width, colour, rawtext) {
|
||||
|
||||
node.on('gesturemovestart', function(e) {
|
||||
if (editor.currentedit.tool === 'select') {
|
||||
e.preventDefault();
|
||||
node.setData('dragging', true);
|
||||
node.setData('offsetx', e.clientX - node.getX());
|
||||
node.setData('offsety', e.clientY - node.getY());
|
||||
|
File diff suppressed because one or more lines are too long
@ -2641,6 +2641,7 @@ var COMMENT = function(editor, gradeid, pageno, x, y, width, colour, rawtext) {
|
||||
|
||||
node.on('gesturemovestart', function(e) {
|
||||
if (editor.currentedit.tool === 'select') {
|
||||
e.preventDefault();
|
||||
node.setData('dragging', true);
|
||||
node.setData('offsetx', e.clientX - node.getX());
|
||||
node.setData('offsety', e.clientY - node.getY());
|
||||
|
@ -267,6 +267,7 @@ var COMMENT = function(editor, gradeid, pageno, x, y, width, colour, rawtext) {
|
||||
|
||||
node.on('gesturemovestart', function(e) {
|
||||
if (editor.currentedit.tool === 'select') {
|
||||
e.preventDefault();
|
||||
node.setData('dragging', true);
|
||||
node.setData('offsetx', e.clientX - node.getX());
|
||||
node.setData('offsety', e.clientY - node.getY());
|
||||
|
Loading…
x
Reference in New Issue
Block a user