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.
23 lines
525 B
23 lines
525 B
8 years ago
|
$(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);
|
||
|
}
|
||
|
);
|
||
|
});
|