Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #333 - Negative disability feedback #357

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,14 @@ <h1 tabindex="-1">Find a school</h1>
</div><!-- /.row -->

<p class="disclaimer lesser-text">Information subject to change; by using this, you agree to our <a href="https://education.nsw.gov.au/going-to-a-public-school/finding-a-public-school/terms-of-use" target="_blank">terms of use</a>.</p>
</div>

<p class="disclaimer lesser-text"><a id="specialist-support-click" href="javascript:return false">Information for specialist support</a></p>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<div id="specialist-support-info" style="display:none">
<p class="disclaimer lesser-text least-text">The department provides a range of specialist support classes in regular and special schools. Access to these classes is through a separate placement panel process. Parents and carers wanting to enrol their child in a specialist support class should use the School Finder to locate their local public school and contact the principal directly. The principal will provide advice about the process to seek enrolment in a specialist support class.</p>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the 'least-text' class? .lesser-text is defined here: https://github.com/CodeforAustralia/school-finder/blob/2388e6930b8fa43fc4b0f73356a589ed357ca0a9/css/style.css but I don't see least-text

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do like the content we're providing parents and principals here - it's specific and clear.

<p class="disclaimer lesser-text least-text">Information about this process is available at <a href="https://education.nsw.gov.au/disability-learning-and-support/programs-and-services" target="_blank">Programs and Services</a>. For the current list of regular and special schools with specialist support classes, visit the <a href="https://data.cese.nsw.gov.au/data/dataset/specialist-support-classes-by-school-and-support-needs-type" target="_blank">Datahub.</a></p>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

again, 'least-text'?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great plug for the Datahub!

</div>

</div>
<div class="jumbotron block-address">
<h1>I live at:</h1>
<p class="lead">Please provide your home address<sup>*</sup> to see your local school:</p>
Expand Down
4 changes: 4 additions & 0 deletions js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,10 @@ app = app || {};
app.findByName(inputText);
}));

$('#specialist-support-click').click(function(){
$('#specialist-support-info').toggle()
});

// $("#address").keyup(function (event) {
// if (event.keyCode === 13) {
// app.util.log("keyup on #address, fake clicking #button-search-address");
Expand Down