Skip to content
Snippets Groups Projects
Commit c0ccdf17 authored by xamgore's avatar xamgore
Browse files

REF: unused local variable

parent 555d20af
Branches
Tags
No related merge requests found
......@@ -11,17 +11,15 @@ $(function() {
// Получить список в память
function GetSubjectsList()
{
var g_facultyID = 0;
var optionVal = parseInt($("select.SelectFaculty").children("option:selected").val());
if (optionVal <= 0)
return;
selectSubject.attr("disabled", true);
var g_facultyID = optionVal;
$.post(
g_URLdir + "handler/map/GetSubjectsList",
{
"FacultyID": g_facultyID
"FacultyID": optionVal
},
function(data)
{
......
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