Skip to content

Commit

Permalink
Merge pull request #118 from ucfcdl/UDOIT_issue116_117
Browse files Browse the repository at this point in the history
Issue #116 & #117 Implemented
  • Loading branch information
bagofarms committed Apr 21, 2016
2 parents b9c6ec3 + 8c5c3c1 commit 11c73f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions config/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
/* Messages */
$udoit_welcome_message = 'The Universal Design Online content Inspection Tool (U<strong>DO</strong>IT) was created by the Center for Distributed Learning at the University of Central Florida. U<strong>DO</strong>IT will scan your course content, generate a report and provide instructions on how to correct accessibility issues. Funding for U<strong>DO</strong>IT was provided by a Canvas Grant awarded in 2014.';

$udoit_disclaimer_message = 'Please Note: This tool is meant to be used as a guide, not a certification. It only checks for common accessibility issues, and is not comprehensive; a clean report in U<strong>DO</strong>IT does not necessarily mean that your course is fully accessible. Likewise, the tool may indicate a possible accessibility issue where one does not exist.';

/* Resource links */
$resource_link = [
'doc' => 'http://webaim.org/techniques/word/',
Expand Down
1 change: 1 addition & 0 deletions public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@

$render_arr = [
'welcome_message' => $udoit_welcome_message,
'disclaimer_message' => $udoit_disclaimer_message,
'launch_params' => $_SESSION['launch_params'],
'udoit_tests' => $udoit_tests
];
Expand Down
5 changes: 2 additions & 3 deletions templates/udoit.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
$this->layout('template', $settings);

?>
<div class="alert alert-warning">
If you have any suggestions on how UDOIT can be improved, please <a href="https://jfe.qualtrics.com/form/SV_es0XFCNS0ymgcD3">leave feedback</a>
</div>
<ul class="nav nav-tabs nav-justified" role="tablist">
<li role="presentation" class="active"><a href="#scanner" role="tab" data-toggle="tab">Scan Course</a></li>
<li role="presentation"><a href="#cached" role="tab" data-toggle="tab">View Old Reports</a></li>
Expand All @@ -29,6 +26,8 @@

<p><?=$welcome_message?></p>

<p><?=$disclaimer_message?></p>

<p class="no-margin"><a href="#udoitInfo" class="btn btn-sm btn-default no-print" data-toggle="modal" data-target="#udoitInfo">What does UDOIT look for?</a></p>
</div>
</div>
Expand Down

0 comments on commit 11c73f5

Please sign in to comment.