From b6078b99dc481b61cef2ecd1f5b23057cb09383c Mon Sep 17 00:00:00 2001
From: RomanSteinberg <romanofficial@yandex.ru>
Date: Tue, 13 Jan 2015 18:42:38 +0300
Subject: [PATCH] RM: console log

---
 ~dev_rating/media/js/rating.js | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/~dev_rating/media/js/rating.js b/~dev_rating/media/js/rating.js
index 9944dacf5..7bcb5756b 100644
--- a/~dev_rating/media/js/rating.js
+++ b/~dev_rating/media/js/rating.js
@@ -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());
 		}
-- 
GitLab