mirror of
https://github.com/moodle/moodle.git
synced 2025-03-22 08:30:04 +01:00
MDL-54890 assignfeedback_editpdf: Fix missing semicolon
Detected by eslint rule 'semi'
This commit is contained in:
parent
a0a63678a9
commit
8b766dd1d8
@ -2546,7 +2546,7 @@ var COMMENT = function(editor, gradeid, pageno, x, y, width, colour, rawtext) {
|
||||
drawable.store_position(container, position.x, position.y);
|
||||
drawable.nodes.push(container);
|
||||
node.set('value', this.rawtext);
|
||||
scrollheight = node.get('scrollHeight'),
|
||||
scrollheight = node.get('scrollHeight');
|
||||
node.setStyles({
|
||||
'height' : scrollheight + 'px',
|
||||
'overflow': 'hidden'
|
||||
|
@ -2546,7 +2546,7 @@ var COMMENT = function(editor, gradeid, pageno, x, y, width, colour, rawtext) {
|
||||
drawable.store_position(container, position.x, position.y);
|
||||
drawable.nodes.push(container);
|
||||
node.set('value', this.rawtext);
|
||||
scrollheight = node.get('scrollHeight'),
|
||||
scrollheight = node.get('scrollHeight');
|
||||
node.setStyles({
|
||||
'height' : scrollheight + 'px',
|
||||
'overflow': 'hidden'
|
||||
|
@ -196,7 +196,7 @@ var COMMENT = function(editor, gradeid, pageno, x, y, width, colour, rawtext) {
|
||||
drawable.store_position(container, position.x, position.y);
|
||||
drawable.nodes.push(container);
|
||||
node.set('value', this.rawtext);
|
||||
scrollheight = node.get('scrollHeight'),
|
||||
scrollheight = node.get('scrollHeight');
|
||||
node.setStyles({
|
||||
'height' : scrollheight + 'px',
|
||||
'overflow': 'hidden'
|
||||
|
Loading…
x
Reference in New Issue
Block a user