26 lines
1,002 B
JavaScript
26 lines
1,002 B
JavaScript
|
(function($) {
|
||
|
dismissPopupAndReload = function(win) {
|
||
|
document.location.reload();
|
||
|
win.close();
|
||
|
};
|
||
|
dismissRelatedImageLookupPopup = function(win, chosenId, chosenThumbnailUrl, chosenDescriptionTxt) {
|
||
|
var name = windowname_to_id(win.name);
|
||
|
var img_name = name + '_thumbnail_img';
|
||
|
var txt_name = name + '_description_txt';
|
||
|
var clear_name = name + '_clear';
|
||
|
var elem = document.getElementById(name);
|
||
|
document.getElementById(name).value = chosenId;
|
||
|
document.getElementById(img_name).src = chosenThumbnailUrl;
|
||
|
document.getElementById(txt_name).innerHTML = chosenDescriptionTxt;
|
||
|
document.getElementById(clear_name).style.display = 'inline';
|
||
|
win.close();
|
||
|
};
|
||
|
dismissRelatedFolderLookupPopup = function(win, chosenId, chosenName) {
|
||
|
var id = windowname_to_id(win.name);
|
||
|
var id_name = id + '_description_txt';
|
||
|
document.getElementById(id).value = chosenId;
|
||
|
document.getElementById(id_name).innerHTML = chosenName;
|
||
|
win.close();
|
||
|
};
|
||
|
})(django.jQuery);
|