Skip to content

Commit

Permalink
MDL-54890 assignfeedback_editpdf: Fix missing semicolon
Browse files Browse the repository at this point in the history
Detected by eslint rule 'semi'
  • Loading branch information
danpoltawski committed Jun 10, 2016
1 parent a0a6367 commit 8b766dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion mod/assign/feedback/editpdf/yui/src/editor/js/comment.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 8b766dd

Please sign in to comment.