Skip to content

Commit a56f032

Browse files
authored
Merge pull request turnitin#678 from turnitin/develop
Release v2023032701
2 parents 1dd753a + 3659dd4 commit a56f032

15 files changed

+26
-14
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### Date: 2023-March-27
2+
### Release: v2023032701
3+
4+
#### UI improvements for PHP 8+ users
5+
There was a bug with PHP 8+ users that casued the assignment inbox to be stuck in a loading state. This happens when users select to view grades as a percentage in the
6+
assignment's settings. We have fixed this bug and the assignment inbox loads as normal.
7+
8+
#### PeerMark manager modal size change
9+
We've updated the size of the PeerMark manager modal so that all buttons and features are more accessible without having to scroll to the left or right side of the modal.
10+
11+
---
12+
113
### Date: 2022-May-12
214
### Release: v2022051201
315

classes/v1migration/v1migration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ private function log_success_migration_event($turnitintooltwoid, $course_id, $v1
550550
}
551551

552552
/**
553-
* Get assignments for migrated data table. Called from ajax.php via turnitintooltwo_extra-2022051001.min.js.
553+
* Get assignments for migrated data table. Called from ajax.php via turnitintooltwo_extra-2023032701.min.js.
554554
*
555555
* @global type $DB
556556
* @return array return array of assignments to display

jquery/plugins.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
$plugins = array(
2020
'turnitintooltwo-dataTables' => array('files' => array('jquery.dataTables.js', 'jquery.dataTables.css')),
2121
'turnitintooltwo-dataTables_plugins' => array('files' => array('jquery.dataTables.plugins.js')),
22-
'turnitintooltwo-turnitintooltwo' => array('files' => array('turnitintooltwo-2022051001.min.js')),
23-
'turnitintooltwo-turnitintooltwo_extra' => array('files' => array('turnitintooltwo_extra-2022051001.min.js')),
24-
'turnitintooltwo-turnitintooltwo_settings' => array('files' => array('turnitintooltwo_settings-2022051001.min.js')),
22+
'turnitintooltwo-turnitintooltwo' => array('files' => array('turnitintooltwo-2023032701.min.js')),
23+
'turnitintooltwo-turnitintooltwo_extra' => array('files' => array('turnitintooltwo_extra-2023032701.min.js')),
24+
'turnitintooltwo-turnitintooltwo_settings' => array('files' => array('turnitintooltwo_settings-2023032701.min.js')),
2525
'turnitintooltwo-datatables_columnfilter' => array('files' => array('jquery.dataTables.columnFilter.js')),
2626
'turnitintooltwo-cookie' => array('files' => array('jquery.cookie.js')),
2727
'turnitintooltwo-colorbox' => array('files' => array('jquery.colorbox.js', 'colorbox.css')),
2828
'turnitintooltwo-uieditable' => array('files' => array('jqueryui-editable.js', 'jqueryui-editable.css')),
2929
'turnitintooltwo-moment' => array('files' => array('moment.js')),
3030
'turnitintooltwo-tooltipster' => array('files' => array('tooltipster.js', 'tooltipster.css')),
3131
'turnitintooltwo-migration_tool' => array('files' => array()) // Required as this is called from V1.
32-
);
32+
);

jquery/turnitintooltwo-2022051001.min.js

-1
This file was deleted.

jquery/turnitintooltwo-2022051001.js jquery/turnitintooltwo-2023032701.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@
571571
// Open an iframe light box containing the Peermark Manager.
572572
if ($('.tii_peermark_manager_launch').length > 0) {
573573
$('.tii_peermark_manager_launch').colorbox({
574-
iframe: true, width: "802px", height: "772px", opacity: "0.7", className: "peermark_manager", transition: "none",
574+
iframe: true, width: "915px", height: "772px", opacity: "0.7", className: "peermark_manager", transition: "none",
575575
onLoad: function () {
576576
lightBoxCloseButton();
577577
getLoadingGif();
@@ -590,7 +590,7 @@
590590
// Open an iframe light box containing the Peermark Reviews.
591591
if ($('.tii_peermark_reviews_launch').length > 0) {
592592
$('.tii_peermark_reviews_launch').colorbox({
593-
iframe: true, width: "802px", height: "772px", opacity: "0.7", className: "peermark_reviews", transition: "none",
593+
iframe: true, width: "915px", height: "772px", opacity: "0.7", className: "peermark_reviews", transition: "none",
594594
onLoad: function () {
595595
lightBoxCloseButton();
596596
getLoadingGif();

jquery/turnitintooltwo-2023032701.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jquery/turnitintooltwo_extra-2022051001.min.js

-1
This file was deleted.

0 commit comments

Comments
 (0)