You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
511 B
15 lines
511 B
function load_diplome_cart(image, course, id, f_date){
|
|
$('[name="diploma_image"]').attr('src', image).show();
|
|
$('[name=diploma_loader]').hide();
|
|
$('[name=diploma_id]').html(id);
|
|
$('[name=diploma_f_date]').html(f_date);
|
|
$('[name=diploma_course]').html(course);
|
|
$('[name=diploma_link]').attr('href', image);
|
|
}
|
|
function change_private(type) {
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: '/access/change_private/',
|
|
data: {'type': type}
|
|
});
|
|
} |