Skip to content
Snippets Groups Projects
Commit dcc2e6c2 authored by Роман Штейнберг's avatar Роман Штейнберг
Browse files

FIX: Renaming

parent e7483549
Branches
Tags
No related merge requests found
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
<button class="default_BlueButton" id="DownloadStatement" disabled>Скачать</button> <button class="default_BlueButton" id="DownloadStatement" disabled>Скачать</button>
</div> </div>
<div class="LayerSection" id="DisciplineSelect" > <div class="LayerSection" id="SelectDisciplineDiv" >
<p><b>Шаг 4. Дисциплина</b></p> <p><b>Шаг 4. Дисциплина</b></p>
<div class="itemBlock"> <div class="itemBlock">
<div class="title">Дисциплина:</div> <div class="title">Дисциплина:</div>
......
...@@ -3,10 +3,10 @@ var $ = jQuery; ...@@ -3,10 +3,10 @@ var $ = jQuery;
function controlVisualization() { function controlVisualization() {
var disciplineType = $("input[name=DisciplineType]:checked").val(); var disciplineType = $("input[name=DisciplineType]:checked").val();
if (disciplineType === 'exam') { if (disciplineType === 'exam') {
$("#DisciplineSelect").show(); $("#SelectDisciplineDiv").show();
$("#DownloadStatement").hide(); $("#DownloadStatement").hide();
} else if (disciplineType === 'credit') { } else if (disciplineType === 'credit') {
$("#DisciplineSelect").hide(); $("#SelectDisciplineDiv").hide();
$("#DownloadStatement").show(); $("#DownloadStatement").show();
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment