Обновление модуля до версии 1.0.8b

This commit is contained in:
2017-02-18 22:35:39 +05:00
parent 77ff33f1c2
commit 999081d373
14 changed files with 2012 additions and 118 deletions

@ -0,0 +1,22 @@
$(function loadFM() {
// отдельный файловый менеджер
$('#finder').elfinder({
url : ave_path+'lib/redactor/elfinder/php/connector_module_gmap.php',
lang : 'ru',
height : 300,
title : 'Файловый менеджер'
}).elfinder('instance');
$('#elFinder a').hover(
function () {
$('#elFinder a').animate({
'background-position' : '0 -45px'
}, 300);
},
function () {
$('#elFinder a').delay(400).animate({
'background-position' : '0 0'
}, 300);
}
);
});

@ -0,0 +1,22 @@
$(function() {
// отдельный файловый менеджер
$('#finder').elfinder({
url : ave_path+'lib/redactor/elfinder/php/connector_template.php',
lang : 'ru',
height : 500,
title : 'Файловый менеджер'
}).elfinder('instance');
$('#elFinder a').hover(
function () {
$('#elFinder a').animate({
'background-position' : '0 -45px'
}, 300);
},
function () {
$('#elFinder a').delay(400).animate({
'background-position' : '0 0'
}, 300);
}
);
});