update v 1.0.7.5
This commit is contained in:
BIN
public/vendor/laravel-filemanager/img/folder.png
vendored
Normal file
BIN
public/vendor/laravel-filemanager/img/folder.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.5 KiB |
33
public/vendor/laravel-filemanager/js/lfm.js
vendored
Normal file
33
public/vendor/laravel-filemanager/js/lfm.js
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
(function( $ ){
|
||||
|
||||
$.fn.filemanager = function(type = 'image') {
|
||||
|
||||
if (type === 'image' || type === 'images') {
|
||||
type = 'Images';
|
||||
} else {
|
||||
type = 'Files';
|
||||
}
|
||||
|
||||
let input_id = this.data('input');
|
||||
let preview_id = this.data('preview');
|
||||
|
||||
this.on('click', function(e) {
|
||||
localStorage.setItem('target_input', input_id);
|
||||
localStorage.setItem('target_preview', preview_id);
|
||||
window.open('/laravel-filemanager?type=' + type, 'FileManager', 'width=900,height=600');
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
})(jQuery);
|
||||
|
||||
|
||||
function SetUrl(url){
|
||||
//set the value of the desired input to image url
|
||||
let target_input = $('#' + localStorage.getItem('target_input'));
|
||||
target_input.val(url);
|
||||
|
||||
//set or change the preview image src
|
||||
let target_preview = $('#' + localStorage.getItem('target_preview'));
|
||||
target_preview.attr('src',url);
|
||||
}
|
Reference in New Issue
Block a user