Skip to content

Commit

Permalink
implemented changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Fenel Joseph committed Mar 24, 2016
1 parent d571862 commit 4815495
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
100644 → 100755
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 @@ -119,6 +119,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 4815495

Please sign in to comment.