Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
justinhunt committed Feb 15, 2024
1 parent 9c43ed6 commit 0078c4f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
@@ -1,6 +1,6 @@
Change List
=========
Version 1.0.18 (Build 202402XXXX)
Version 1.0.18 (Build 2024021500)
- better support for insertions

Version 1.0.17 (Build 2024021400)
Expand Down
6 changes: 2 additions & 4 deletions amd/src/correctionsmarkup.js
Expand Up @@ -163,11 +163,9 @@ define(['jquery', 'core/log'], function ($, log) {
}else if(correctiontype==='omission') {
correctionsclasses.push(that.cd.aiomitted);
}else if (correctiontype==='suggestion') {
correctionsclasses.push(that.cd.aisuggestion);
correctionsclasses.push(that.cd.aisuggested);
}


//$.each(tpositions, function (index, tposition) {
for (var i = 0; i < tpositions.length; i++) {
var tposition = tpositions[i];
if(correctiontype==='insertion') {
Expand All @@ -181,8 +179,8 @@ define(['jquery', 'core/log'], function ($, log) {
}
}
}

},

dehighlightoriginal: function (tpositionstring) {
var that = this;
var correctionsclasses = [that.cd.aicorrected, that.cd.aiinserted, that.cd.aiomitted, that.cd.aisuggestion];
Expand Down
5 changes: 2 additions & 3 deletions styles.css
Expand Up @@ -203,7 +203,8 @@ button.assignfeedback_cloudpoodll_deletesubmissionbutton {
max-width: 480px;
}

.asf_cp_grading_passageword.asf_cp_aicorrected, .asf_cp_grading_passagespace.asf_cp_aicorrected {
.asf_cp_grading_passageword.asf_cp_aicorrected,
.asf_cp_grading_passagespace.asf_cp_aicorrected {
background-color: lightpink;
}

Expand Down Expand Up @@ -236,8 +237,6 @@ span.asf_cp_corrections_omittedword {
word-spacing: 5px;
}



.asf_cp_grading_passagecont.asf_cp_summarytranscriptplaceholder,.asf_cp_corrections_cont {
border: 1px grey solid;
padding: 3px;
Expand Down
4 changes: 2 additions & 2 deletions version.php
Expand Up @@ -24,8 +24,8 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2024021400;
$plugin->version = 2024021500;
$plugin->requires = 2016052300; // Moodle 3.1.
$plugin->component = 'assignfeedback_cloudpoodll';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '1.0.17 (Build 2024021400)';
$plugin->release = '1.0.18 (Build 2024021500)';

0 comments on commit 0078c4f

Please sign in to comment.