| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
-
- /**
- * Theme: Codefox Admin Template
- * Author: Coderthemes
- * Email: coderthemes@gmail.com
- * File Uploads
- */
-
- $(document).ready(function(){
-
- 'use-strict';
-
- //Example single
- $('#filer_input_single').filer({
- extensions: ['jpg', 'jpeg', 'png', 'gif', 'psd'],
- changeInput: true,
- showThumbs: true,
- addMore: false
- });
-
- //Example 2
- $('#filer_input').filer({
- limit: 3,
- maxSize: 3,
- extensions: ['jpg', 'jpeg', 'png', 'gif', 'psd'],
- changeInput: true,
- showThumbs: true,
- addMore: true
- });
-
- //Example 1
- $("#filer_input1").filer({
- limit: null,
- maxSize: null,
- extensions: null,
- changeInput: '<div class="jFiler-input-dragDrop"><div class="jFiler-input-inner"><div class="jFiler-input-icon"><i class="icon-jfi-cloud-up-o"></i></div><div class="jFiler-input-text"><h3>Drag & Drop files here</h3> <span style="display:inline-block; margin: 15px 0">or</span></div><a class="jFiler-input-choose-btn btn btn-primary waves-effect waves-light">Browse Files</a></div></div>',
- showThumbs: true,
- theme: "dragdropbox",
- templates: {
- box: '<ul class="jFiler-items-list jFiler-items-grid"></ul>',
- item: '<li class="jFiler-item">\
- <div class="jFiler-item-container">\
- <div class="jFiler-item-inner">\
- <div class="jFiler-item-thumb">\
- <div class="jFiler-item-status"></div>\
- <div class="jFiler-item-info">\
- <span class="jFiler-item-title"><b title="{{fi-name}}">{{fi-name | limitTo: 25}}</b></span>\
- <span class="jFiler-item-others">{{fi-size2}}</span>\
- </div>\
- {{fi-image}}\
- </div>\
- <div class="jFiler-item-assets jFiler-row">\
- <ul class="list-inline pull-left">\
- <li>{{fi-progressBar}}</li>\
- </ul>\
- <ul class="list-inline pull-right">\
- <li><a class="icon-jfi-trash jFiler-item-trash-action"></a></li>\
- </ul>\
- </div>\
- </div>\
- </div>\
- </li>',
- itemAppend: '<li class="jFiler-item">\
- <div class="jFiler-item-container">\
- <div class="jFiler-item-inner">\
- <div class="jFiler-item-thumb">\
- <div class="jFiler-item-status"></div>\
- <div class="jFiler-item-info">\
- <span class="jFiler-item-title"><b title="{{fi-name}}">{{fi-name | limitTo: 25}}</b></span>\
- <span class="jFiler-item-others">{{fi-size2}}</span>\
- </div>\
- {{fi-image}}\
- </div>\
- <div class="jFiler-item-assets jFiler-row">\
- <ul class="list-inline pull-left">\
- <li><span class="jFiler-item-others">{{fi-icon}}</span></li>\
- </ul>\
- <ul class="list-inline pull-right">\
- <li><a class="icon-jfi-trash jFiler-item-trash-action"></a></li>\
- </ul>\
- </div>\
- </div>\
- </div>\
- </li>',
- progressBar: '<div class="bar"></div>',
- itemAppendToEnd: false,
- removeConfirmation: true,
- _selectors: {
- list: '.jFiler-items-list',
- item: '.jFiler-item',
- progressBar: '.bar',
- remove: '.jFiler-item-trash-action'
- }
- },
- dragDrop: {
- dragEnter: null,
- dragLeave: null,
- drop: null,
- },
- uploadFile: {
- url: "../files/assets/pages/filer/php/ajax_upload_file.php",
- data: null,
- type: 'POST',
- enctype: 'multipart/form-data',
- beforeSend: function(){},
- success: function(data, el){
- var parent = el.find(".jFiler-jProgressBar").parent();
- el.find(".jFiler-jProgressBar").fadeOut("slow", function(){
- $("<div class=\"jFiler-item-others text-success\"><i class=\"icon-jfi-check-circle\"></i> Success</div>").hide().appendTo(parent).fadeIn("slow");
- });
- },
- error: function(el){
- var parent = el.find(".jFiler-jProgressBar").parent();
- el.find(".jFiler-jProgressBar").fadeOut("slow", function(){
- $("<div class=\"jFiler-item-others text-error\"><i class=\"icon-jfi-minus-circle\"></i> Error</div>").hide().appendTo(parent).fadeIn("slow");
- });
- },
- statusCode: null,
- onProgress: null,
- onComplete: null
- },
- addMore: false,
- clipBoardPaste: true,
- excludeName: null,
- beforeRender: null,
- afterRender: null,
- beforeShow: null,
- beforeSelect: null,
- onSelect: null,
- afterShow: null,
- onRemove: function(itemEl, file, id, listEl, boxEl, newInputEl, inputEl){
- var file = file.name;
- $.post('../plugins/jquery.filer/php/ajax_remove_file.php', {file: file});
- },
- onEmpty: null,
- options: null,
- captions: {
- button: "Choose Files",
- feedback: "Choose files To Upload",
- feedback2: "files were chosen",
- drop: "Drop file here to Upload",
- removeConfirmation: "Are you sure you want to remove this file?",
- errors: {
- filesLimit: "Only {{fi-limit}} files are allowed to be uploaded.",
- filesType: "Only Images are allowed to be uploaded.",
- filesSize: "{{fi-name}} is too large! Please upload file up to {{fi-maxSize}} MB.",
- filesSizeAll: "Files you've choosed are too large! Please upload files up to {{fi-maxSize}} MB."
- }
- }
- });
- });
|