Skip to content
Snippets Groups Projects
Commit 7c2adecf authored by Антон Шалимов's avatar Антон Шалимов
Browse files

fix js and css

parent 42d0952f
Branches
Tags
No related merge requests found
......@@ -15,7 +15,7 @@
margin-left: 1.5%;
padding-top: 5px;
font-size: 18px;
font-size: 16px;
}
.studentsRate {
......
......@@ -84,9 +84,12 @@ $(function() {
g_submoduleTitle = 'Бонусные баллы';
g_submoduleMaxRate = parseInt($(".RatingTableSubmodulesHeadMaxRate #"+g_submoduleID).children("input").val());
if (jThis.attr("class").indexOf("additionalCell") >= 0)
if (jThis.attr("class").indexOf("additionalCell") >= 0)
{
g_submoduleMaxRate = 38 - parseInt(jThis.siblings(".semesterRateResultCell").text());
var t = parseInt(jThis.siblings(".semesterRateResultCell").text());
if (t > 31 && t < 39)
g_submoduleMaxRate = 38 - t;
else g_submoduleMaxRate = 0;
}
// Получаем студента
......
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