我正在使用elFinder 2.1并希望在下载事件中添加javascript函数。这是注册下载和/或发送邮件。
我希望在双击和下载选项上触发该功能。
我可以添加一个getFileCallback:function(url){},但我只对双击该文件有效。
在哪里可以找到下载选项的编码? 我应该在哪里添加我的功能?
感谢大家的帮助。
答案 0 :(得分:0)
$('#elfinder').elfinder({
handlers: {
download: function(event, elfinderInstance) {
elfinderInstance.log(event); // print to browser console
}
},
// and your options
});
// OR
var elfinderInstance = $('#elfinder').elfinder({
// your options object
}).elfinder('instance')
.bind('download', function(event) {
elfinderInstance.log(event); // print to browser console
});