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.
		
		
		
		
			
				
					46 lines
				
				2.1 KiB
			
		
		
			
		
	
	
					46 lines
				
				2.1 KiB
			| 
											4 years ago
										 | /*! | ||
|  |  * bootstrap-fileinput v4.5.0 | ||
|  |  * http://plugins.krajee.com/file-input
 | ||
|  |  * | ||
|  |  * Glyphicon (default) theme configuration for bootstrap-fileinput. | ||
|  |  * | ||
|  |  * 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"; | ||
|  | 
 | ||
|  |     $.fn.fileinputThemes.gly = { | ||
|  |         fileActionSettings: { | ||
|  |             removeIcon: '<i class="glyphicon glyphicon-trash"></i>', | ||
|  |             uploadIcon: '<i class="glyphicon glyphicon-upload"></i>', | ||
|  |             zoomIcon: '<i class="glyphicon glyphicon-zoom-in"></i>', | ||
|  |             dragIcon: '<i class="glyphicon glyphicon-move"></i>', | ||
|  |             indicatorNew: '<i class="glyphicon glyphicon-plus-sign text-warning"></i>', | ||
|  |             indicatorSuccess: '<i class="glyphicon glyphicon-ok-sign text-success"></i>', | ||
|  |             indicatorError: '<i class="glyphicon glyphicon-exclamation-sign text-danger"></i>', | ||
|  |             indicatorLoading: '<i class="glyphicon glyphicon-hourglass text-muted"></i>' | ||
|  |         }, | ||
|  |         layoutTemplates: { | ||
|  |             fileIcon: '<i class="glyphicon glyphicon-file kv-caption-icon"></i>' | ||
|  |         }, | ||
|  |         previewZoomButtonIcons: { | ||
|  |             prev: '<i class="glyphicon glyphicon-triangle-left"></i>', | ||
|  |             next: '<i class="glyphicon glyphicon-triangle-right"></i>', | ||
|  |             toggleheader: '<i class="glyphicon glyphicon-resize-vertical"></i>', | ||
|  |             fullscreen: '<i class="glyphicon glyphicon-fullscreen"></i>', | ||
|  |             borderless: '<i class="glyphicon glyphicon-resize-full"></i>', | ||
|  |             close: '<i class="glyphicon glyphicon-remove"></i>' | ||
|  |         }, | ||
|  |         previewFileIcon: '<i class="glyphicon glyphicon-file"></i>', | ||
|  |         browseIcon: '<i class="glyphicon glyphicon-folder-open"></i> ', | ||
|  |         removeIcon: '<i class="glyphicon glyphicon-trash"></i>', | ||
|  |         cancelIcon: '<i class="glyphicon glyphicon-ban-circle"></i>', | ||
|  |         uploadIcon: '<i class="glyphicon glyphicon-upload"></i>', | ||
|  |         msgValidationErrorIcon: '<i class="glyphicon glyphicon-exclamation-sign"></i> ' | ||
|  |     }; | ||
|  | })(window.jQuery); |