Skip to content

Commit 6d92b18

Browse files
author
reekypete
committed
Closes #333 - Negative disability feedback
1 parent 1cabb8a commit 6d92b18

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

index.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,14 @@ <h1 tabindex="-1">Find a school</h1>
7777
</div><!-- /.row -->
7878

7979
<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>
80-
</div>
8180

81+
<p class="disclaimer lesser-text"><a id="specialist-support-click" href="javascript:return false">Information for specialist support</a></p>
82+
<div id="specialist-support-info" style="display:none">
83+
<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>
84+
<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>
85+
</div>
86+
87+
</div>
8288
<div class="jumbotron block-address">
8389
<h1>I live at:</h1>
8490
<p class="lead">Please provide your home address<sup>*</sup> to see your local school:</p>

js/app.js

+4
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ app = app || {};
274274
app.findByName(inputText);
275275
}));
276276

277+
$('#specialist-support-click').click(function(){
278+
$('#specialist-support-info').toggle()
279+
});
280+
277281
// $("#address").keyup(function (event) {
278282
// if (event.keyCode === 13) {
279283
// app.util.log("keyup on #address, fake clicking #button-search-address");

0 commit comments

Comments
 (0)