Skip to content
Snippets Groups Projects
Commit b6078b99 authored by RomanSteinberg's avatar RomanSteinberg
Browse files

RM: console log

parent 272c6a65
Branches
Tags
No related merge requests found
......@@ -19,7 +19,7 @@ $(function() {
// + ID - id дисциплины
// + studyGroupID_Filter - studyGroupID для фильтра (Эффект памяти)
var json_settings = $.parseJSON($("#hidden_div").html());
console.log(json_settings);
//console.log(json_settings);
$("#hidden_div").remove();
filterGroups(json_settings.StudyGroupID_Filter);
$(".groupSelector [value='"+ json_settings.StudyGroupID_Filter +"']").attr("selected", "selected");
......@@ -96,7 +96,7 @@ $(function() {
g_submoduleTitle = 'Бонусные баллы';
g_submoduleMaxRate = parseInt($(".RatingTableSubmodulesHeadMaxRate #"+g_submoduleID).children("input").val());
console.log(g_submoduleMaxRate);
//console.log(g_submoduleMaxRate);
if (jThis.attr("class").indexOf("additionalCell") >= 0)
{
......@@ -161,7 +161,6 @@ $(function() {
jThis.siblings(".commonCell").each(function(){ // добавим сумму баллов в соседних ячейках
if ($(this).children("input").val() !== "")
rateResult += parseInt($(this).children("input").val());
console.log($(this).attr("id")+" "+$(this).children("input").val()+" ");
});
rateResult += parseInt(jThis.siblings(".examCell").text());
}
......
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