Skip to content

Commit

Permalink
Merge branch 'MDL-54890-master' of git://github.com/danpoltawski/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 authored and danpoltawski committed Jun 16, 2016
2 parents d13f2a6 + 834f1b6 commit 392c404
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ Y.extend(RESOURCETOOLBOX, TOOLBOX, {
break;
case 'move':
case 'update':
case 'duplicate':
case 'assignroles':
break;
default:
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ Y.extend(RESOURCETOOLBOX, TOOLBOX, {
break;
case 'move':
case 'update':
case 'duplicate':
case 'assignroles':
break;
default:
Expand Down
1 change: 0 additions & 1 deletion course/yui/src/toolboxes/js/resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ Y.extend(RESOURCETOOLBOX, TOOLBOX, {
break;
case 'move':
case 'update':
case 'duplicate':
case 'assignroles':
break;
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2540,7 +2540,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 @@ -2540,7 +2540,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 392c404

Please sign in to comment.