PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
so-widgets-bundle
/
js
/*global jQuery, sowb */ /*! * FitText.js 1.2 * * Copyright 2011, Dave Rupert http://daverupert.com * Released under the WTFPL license * http://sam.zoy.org/wtfpl/ * * Date: Thu May 05 14:23:00 2011 -0600 */ var sowb = window.sowb || {}; (function ($) { $.fn.fitText = function (kompressor, options) { // Setup options var compressor = kompressor || 1, settings = $.extend({ 'minFontSize': Number.NEGATIVE_INFINITY, 'maxFontSize': Number.POSITIVE_INFINITY }, options); return this.each(function () { // Store the object var $this = $(this); // Resizer() resizes items based on the object width divided by the compressor * 10 var resizer = function () { $this.css('font-size', Math.max(Math.min($this.width() / (compressor * 10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize))); }; // Call once to set. resizer(); // Call on resize. Opera debounces their resize by default. $(window).on('resize.fittext orientationchange.fittext', resizer); $( sowb ).on( 'setup_widgets', resizer ); }); }; })(jQuery); jQuery( function( $ ){ // Apply FitText to all Widgets Bundle FitText wrappers sowb.runFitText = function () { $( '.so-widget-fittext-wrapper' ).each( function() { var fitTextWrapper = $( this ); if ( ! fitTextWrapper.is( ':visible' ) || fitTextWrapper.data( 'fitTextDone' ) ) { return fitTextWrapper; } var compressor = fitTextWrapper.data( 'fitTextCompressor' ) || 0.85; fitTextWrapper.find( 'h1,h2,h3,h4,h5,h6' ).each( function () { var $$ = $( this ); $$.fitText( compressor, { minFontSize: '12px', maxFontSize: $$.css( 'font-size' ) } ); } ); fitTextWrapper.data( 'fitTextDone', true ); fitTextWrapper.trigger( 'fitTextDone' ); }); }; $( window ).on( 'resize', sowb.runFitText ); $( sowb ).on( 'setup_widgets', sowb.runFitText ); sowb.runFitText(); } ); window.sowb = sowb;
[-] jquery.cycle.min.js
[edit]
[-] sow.jquery.fittext.js
[edit]
[-] jquery.cycle.swipe.js
[edit]
[-] jquery.touchSwipe.js
[edit]
[+]
lib
[+]
slider
[-] sow.jquery.fittext.min.js
[edit]
[-] jquery.cycle.js
[edit]
[-] sow.google-map.js
[edit]
[-] sow.google-map.min.js
[edit]
[-] carousel.min.js
[edit]
[+]
..
[-] jquery.touchSwipe.min.js
[edit]
[-] carousel.js
[edit]
[-] jquery.cycle.swipe.min.js
[edit]