1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
function loginButtonShow(){
$('#loginForm').show();
}
function loginButtonHide(){
$('#loginForm').hide();
}
function subjectConfirmButtonHide(){
$('#subjectConfirmRemove').hide();
}
function subjectConfirmButtonShow(){
$('#subjectConfirmRemove').show();
}
function addCategoryButtonHide(){
$('#addCategory').hide();
}
function addCategoryButtonShow(){
$('#addCategory').show();
}
function changeActiveCourseButtonHide(){
$('#changeActiveCourse').hide();
}
function changeActiveCourseButtonShow(){
$('#changeActiveCourse').show();
}
function editCourseDetailsButtonHide(){
$('#editCourse').hide();
}
function editCourseDetailsButtonShow(){
$('#editCourse').show();
}
function addCourseButtonHide(){
$('#addCourse').hide();
}
function addCourseButtonShow(){
$('#addCourse').show();
}
function addNewInstructorButtonHide(){
$('#addNewInstructor').hide();
}
function addNewInstructorButtonShow(){
$('#addNewInstructor').show();
}
function addStudentsButtonHide(){
$('#addStudents').hide();
}
function addStudentsButtonShow(){
$('#addStudents').show();
}
|