2017-06-24 00:58:56 +03:00
|
|
|
$().ready(function() {
|
|
|
|
|
|
|
|
// отдельный файловый менеджер
|
|
|
|
$('#finder').elfinder({
|
2017-09-21 09:50:14 +03:00
|
|
|
url : ave_path+'lib/redactor/elfinder/php/connector.php',
|
2017-06-24 00:58:56 +03:00
|
|
|
lang : 'ru',
|
|
|
|
height : 500,
|
|
|
|
title : 'Файловый менеджер'
|
|
|
|
}).elfinder('instance');
|
|
|
|
|
|
|
|
|
|
|
|
// диалог выбора изображений
|
|
|
|
$('.dialog_images').click(function() {
|
|
|
|
var id = $(this).attr("rel");
|
|
|
|
$('<div/>').dialogelfinder({
|
2017-09-21 09:50:14 +03:00
|
|
|
url : ave_path+'lib/redactor/elfinder/php/connector.php',
|
2017-06-24 00:58:56 +03:00
|
|
|
lang : 'ru',
|
|
|
|
width : 1100,
|
|
|
|
height: 600,
|
|
|
|
modal : true,
|
|
|
|
title : 'Файловый менеджер',
|
|
|
|
getFileCallback : function(files, fm) {
|
|
|
|
$("#image__"+id).val('/'+files['url'].slice(1));
|
|
|
|
$("#images_feld_"+id).html("<img src="+files['url']+">");
|
|
|
|
},
|
|
|
|
commandsOptions : {
|
|
|
|
getfile : {
|
|
|
|
oncomplete : 'destroy',
|
|
|
|
folders : false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$('#elFinder a').hover(
|
|
|
|
function () {
|
|
|
|
$('#elFinder a').animate({
|
|
|
|
'background-position' : '0 -45px'
|
|
|
|
}, 300);
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
$('#elFinder a').delay(400).animate({
|
|
|
|
'background-position' : '0 0'
|
|
|
|
}, 300);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|