bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/trunk
57.3.2
by Simon Bergöö
added some files for the popups |
1 |
function loginButtonShow(){ |
83.1.3
by Erik Wikström
Moved two popups from manageCoursesBody.php |
2 |
$('#loginForm').show(); |
57.3.2
by Simon Bergöö
added some files for the popups |
3 |
}
|
4 |
function loginButtonHide(){ |
|
83.1.3
by Erik Wikström
Moved two popups from manageCoursesBody.php |
5 |
$('#loginForm').hide(); |
57.3.2
by Simon Bergöö
added some files for the popups |
6 |
}
|
7 |
function subjectConfirmButtonHide(){ |
|
8 |
$('#subjectConfirmRemove').hide(); |
|
9 |
}
|
|
10 |
function subjectConfirmButtonShow(){ |
|
11 |
$('#subjectConfirmRemove').show(); |
|
12 |
}
|
|
13 |
function addCategoryButtonHide(){ |
|
14 |
$('#addCategory').hide(); |
|
15 |
}
|
|
16 |
function addCategoryButtonShow(){ |
|
17 |
$('#addCategory').show(); |
|
18 |
}
|
|
19 |
function changeActiveCourseButtonHide(){ |
|
20 |
$('#changeActiveCourse').hide(); |
|
21 |
}
|
|
22 |
function changeActiveCourseButtonShow(){ |
|
23 |
$('#changeActiveCourse').show(); |
|
24 |
}
|
|
25 |
function editCourseDetailsButtonHide(){ |
|
83.1.3
by Erik Wikström
Moved two popups from manageCoursesBody.php |
26 |
$('#editCourse').hide(); |
57.3.2
by Simon Bergöö
added some files for the popups |
27 |
}
|
28 |
function editCourseDetailsButtonShow(){ |
|
83.1.3
by Erik Wikström
Moved two popups from manageCoursesBody.php |
29 |
$('#editCourse').show(); |
57.3.2
by Simon Bergöö
added some files for the popups |
30 |
}
|
31 |
function addCourseButtonHide(){ |
|
32 |
$('#addCourse').hide(); |
|
33 |
}
|
|
34 |
function addCourseButtonShow(){ |
|
35 |
$('#addCourse').show(); |
|
36 |
}
|
|
37 |
function addNewInstructorButtonHide(){ |
|
38 |
$('#addNewInstructor').hide(); |
|
39 |
}
|
|
40 |
function addNewInstructorButtonShow(){ |
|
41 |
$('#addNewInstructor').show(); |
|
42 |
}
|
|
43 |
function addStudentsButtonHide(){ |
|
44 |
$('#addStudents').hide(); |
|
45 |
}
|
|
46 |
function addStudentsButtonShow(){ |
|
47 |
$('#addStudents').show(); |
|
48 |
}
|