This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
auquotidien/static/js/fargo.js

43 lines
1.3 KiB
JavaScript

$(function() {
var iframe = $('<iframe frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>');
var dialog = $("<div></div>").append(iframe).appendTo("body").dialog({
autoOpen: false,
modal: true,
resizable: false,
width: "auto",
height: "auto",
close: function () {
iframe.attr("src", "");
}
});
$('p.use-file-from-fargo span').click(function(e) {
e.preventDefault();
var base_widget = $(this).parents('.file-upload-widget');
document.fargo_set_token = function (token, title) {
if (token) {
$(base_widget).find('.filename').text(title);
$(base_widget).find('.fileinfo').show();
$(base_widget).find('input[type=hidden]').val(token);
$(base_widget).find('input[type=file]').hide();
}
document.fargo_close_dialog();
}
document.fargo_close_dialog = function () {
document.fargo_set_token = undefined;
dialog.dialog('close');
}
var src = $(this).data('src');
var title = $(this).data("title");
var width = $(this).data("width");
var height = $(this).data("height");
iframe.attr({
width: parseInt(width),
height: parseInt(height),
src: src
});
dialog.dialog("option", "title", title);
dialog.dialog("open");
});
});