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:
Jake Dallimore 2016-07-25 11:56:43 +08:00
parent d1a3ea62ef
commit 243ddbcf50
4 changed files with 7 additions and 4 deletions

View File

@ -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());

View File

@ -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());

View File

@ -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());