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.
		
		
		
		
			
				
					87 lines
				
				4.2 KiB
			
		
		
			
		
	
	
					87 lines
				
				4.2 KiB
			| 
											4 years ago
										 | /*! | ||
|  |  * bootstrap-fileinput v4.5.0 | ||
|  |  * http://plugins.krajee.com/file-input
 | ||
|  |  * | ||
|  |  * Krajee Explorer Font Awesome theme configuration for bootstrap-fileinput.  | ||
|  |  * Load this theme file after loading `fileinput.js`. Ensure that | ||
|  |  * font awesome assets and CSS are loaded on the page as well. | ||
|  |  * | ||
|  |  * Author: Kartik Visweswaran | ||
|  |  * Copyright: 2014 - 2018, Kartik Visweswaran, Krajee.com | ||
|  |  * | ||
|  |  * Licensed under the BSD 3-Clause | ||
|  |  * https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md
 | ||
|  |  */ | ||
|  | (function ($) { | ||
|  |     "use strict"; | ||
|  |     var teTagBef = '<tr class="file-preview-frame {frameClass}" id="{previewId}" data-fileindex="{fileindex}"' + | ||
|  |         ' data-template="{template}"', teContent = '<td class="kv-file-content">\n'; | ||
|  |     $.fn.fileinputThemes['explorer-fa'] = { | ||
|  |         layoutTemplates: { | ||
|  |             preview: '<div class="file-preview {class}">\n' + | ||
|  |             '    {close}' + | ||
|  |             '    <div class="{dropClass}">\n' + | ||
|  |             '    <table class="table table-bordered table-hover"><tbody class="file-preview-thumbnails">\n' + | ||
|  |             '    </tbody></table>\n' + | ||
|  |             '    <div class="clearfix"></div>' + | ||
|  |             '    <div class="file-preview-status text-center text-success"></div>\n' + | ||
|  |             '    <div class="kv-fileinput-error"></div>\n' + | ||
|  |             '    </div>\n' + | ||
|  |             '</div>', | ||
|  |             footer: '<td class="file-details-cell"><div class="explorer-caption" title="{caption}">{caption}</div> ' + | ||
|  |             '{size}{progress}</td><td class="file-actions-cell">{indicator} {actions}</td>', | ||
|  |             actions: '{drag}\n' + | ||
|  |             '<div class="file-actions">\n' + | ||
|  |             '    <div class="file-footer-buttons">\n' + | ||
|  |             '        {upload} {download} {delete} {zoom} {other} ' + | ||
|  |             '    </div>\n' + | ||
|  |             '</div>', | ||
|  |             zoomCache: '<tr style="display:none" class="kv-zoom-cache-theme"><td>' + | ||
|  |             '<table class="kv-zoom-cache">{zoomContent}</table></td></tr>', | ||
|  |             fileIcon: '<i class="fa fa-file kv-caption-icon"></i> ' | ||
|  |         }, | ||
|  |         previewMarkupTags: { | ||
|  |             tagBefore1: teTagBef + '>' + teContent, | ||
|  |             tagBefore2: teTagBef + ' title="{caption}">' + teContent, | ||
|  |             tagAfter: '</td>\n{footer}</tr>\n' | ||
|  |         }, | ||
|  |         previewSettings: { | ||
|  |             image: {height: "60px"}, | ||
|  |             html: {width: "100px", height: "60px"}, | ||
|  |             text: {width: "100px", height: "60px"}, | ||
|  |             video: {width: "auto", height: "60px"}, | ||
|  |             audio: {width: "auto", height: "60px"}, | ||
|  |             flash: {width: "100%", height: "60px"}, | ||
|  |             object: {width: "100%", height: "60px"}, | ||
|  |             pdf: {width: "100px", height: "60px"}, | ||
|  |             other: {width: "100%", height: "60px"} | ||
|  |         }, | ||
|  |         frameClass: 'explorer-frame', | ||
|  |         fileActionSettings: { | ||
|  |             removeIcon: '<i class="fa fa-trash"></i>', | ||
|  |             uploadIcon: '<i class="fa fa-upload"></i>', | ||
|  |             uploadRetryIcon: '<i class="fa fa-repeat"></i>', | ||
|  |             downloadIcon: '<i class="fa fa-download"></i>', | ||
|  |             zoomIcon: '<i class="fa fa-search-plus"></i>', | ||
|  |             dragIcon: '<i class="fa fa-arrows"></i>', | ||
|  |             indicatorNew: '<i class="fa fa-plus-circle text-warning"></i>', | ||
|  |             indicatorSuccess: '<i class="fa fa-check-circle text-success"></i>', | ||
|  |             indicatorError: '<i class="fa fa-exclamation-circle text-danger"></i>', | ||
|  |             indicatorLoading: '<i class="fa fa-hourglass text-muted"></i>' | ||
|  |         }, | ||
|  |         previewZoomButtonIcons: { | ||
|  |             prev: '<i class="fa fa-caret-left fa-lg"></i>', | ||
|  |             next: '<i class="fa fa-caret-right fa-lg"></i>', | ||
|  |             toggleheader: '<i class="fa fa-fw fa-arrows-v"></i>', | ||
|  |             fullscreen: '<i class="fa fa-fw fa-arrows-alt"></i>', | ||
|  |             borderless: '<i class="fa fa-fw fa-external-link"></i>', | ||
|  |             close: '<i class="fa fa-fw fa-remove"></i>' | ||
|  |         }, | ||
|  |         previewFileIcon: '<i class="fa fa-file"></i>', | ||
|  |         browseIcon: '<i class="fa fa-folder-open"></i>', | ||
|  |         removeIcon: '<i class="fa fa-trash"></i>', | ||
|  |         cancelIcon: '<i class="fa fa-ban"></i>', | ||
|  |         uploadIcon: '<i class="fa fa-upload"></i>', | ||
|  |         msgValidationErrorIcon: '<i class="fa fa-exclamation-circle"></i> ' | ||
|  |     }; | ||
|  | })(window.jQuery); |