Skip to content

Commit

Permalink
Merge pull request #40 from talview/release/v1.3.1
Browse files Browse the repository at this point in the history
Release/v1.3.1
  • Loading branch information
rakeshprabhu authored Dec 8, 2023
2 parents 15be0c9 + b042df4 commit 68983f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,13 @@ public function setup_attempt_page($page)
if ($local_proview_enabled && $quizaccess_proctor_setting_enabled && $proctortype !== 'noproctor') {
$page->set_pagelayout('secure');
$page->set_popup_notification_allowed(false); // Prevent message notifications.
$page->requires->js_amd_inline('
require(["jquery"], function($) {
$(document).ready(function() {
$(".pagelayout-secure").find("#region-main > div > div.container-fluid.tertiary-navigation > div > div > a").css("display", "none");
});
});
');
}

if ($this->is_tsb_required() && !strpos($_SERVER ['HTTP_USER_AGENT'], "Proview-SB")) {
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

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

$plugin->version = 2023120302;
$plugin->version = 2023120801;
$plugin->requires = 2020061500;
$plugin->release = '1.3.0 (Build: 2023120302)';
$plugin->release = '1.3.1 (Build: 2023120801)';
$plugin->component = 'quizaccess_proctor';
$plugin->maturity = MATURITY_STABLE;

Expand Down

0 comments on commit 68983f1

Please sign in to comment.