/home/vianto5/hidalgoresidences.mx/wp-content/themes/Bridge100/bridge/js
NameSizeModeActions
admin/-0755rm
plugins/-0755rm
ajax.js331530644editdlrm
ajax.min.js197840644editdlrm
bigtext.js94590644editdlrm
bootstrap.carousel.js75350644editdlrm
Chart.min.js321840644editdlrm
custom_js.js850644editdlrm
custom_js.php6100644editdlrm
default-temp.js3540070644editdlrm
default.js3880530644editdlrm
default.min.js2085590644editdlrm
default_dynamic.js39230644editdlrm
default_dynamic.php103530644editdlrm
doubletaptogo.js8900644editdlrm
flashmediaelement.swf291420644editdlrm
html5.js20010644editdlrm
jplayer.min.js428560644editdlrm
jquery-1.10.2.min.js930630644editdlrm
jquery.appear.js42020644editdlrm
jquery.carouFredSel-6.2.1.js910840644editdlrm
jquery.carouFredSel-6.2.1.min.js626330644editdlrm
jquery.easing.1.3.js80970644editdlrm
jquery.fitvids.js49790644editdlrm
jquery.flexslider-min.js223420644editdlrm
jquery.fullPage.min.js236790644editdlrm
jquery.hoverIntent.min.js14640644editdlrm
jquery.isotope.js433300644editdlrm
jquery.isotope.min.js356240644editdlrm
jquery.justifiedGallery.min.js178270644editdlrm
jquery.mousewheel.min.js13920644editdlrm
jquery.multiscroll.min.js134270644editdlrm
jquery.nicescroll.min.js568780644editdlrm
jquery.prettyPhoto.js215060644editdlrm
jquery.sticky-kit.min.js27980644editdlrm
jquery.stretch.js41530644editdlrm
jquery.stylish-select.min.js82750644editdlrm
jquery.touchSwipe.min.js118050644editdlrm
jquery.waitforimages.js51710644editdlrm
lemmon-slider.js131100644editdlrm
lemmon-slider.min.js60590644editdlrm
mediaelement-and-player.min.js710270644editdlrm
modernizr-2.6.2.min.js154140644editdlrm
plugins.js4845250644editdlrm
qode-like.js10340644editdlrm
qode-like.min.js5920644editdlrm
ScrollToPlugin.min.js25330644editdlrm
select2.min.js602150644editdlrm
skrollr.js401940644editdlrm
smoothPageScroll.js9710644editdlrm
smoothPageScroll.min.js6670644editdlrm
SmoothScroll.js112750644editdlrm
toolbar.js2940644editdlrm
TweenLite.min.js254520644editdlrm
waypoints.min.js80640644editdlrm
woocommerce.js29420644editdlrm
woocommerce.min.js80700644editdlrm
Edit: /home/vianto5/hidalgoresidences.mx/wp-content/themes/Bridge100/bridge/js/jquery.stretch.js (4153B)
/* strech jQuery Plugin * * Copyright (c) 2010, Tom Switzer * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ (function($) { /** * Expands text to fill up the entire width of its parent (or at least as much * as possible). It does this in 2 ways. First, it finds the largest font-size * for the text that can still fits on one line. If there is still some space * left to fill, it will increase the gap between the words as well to fill the * remaining space. * * For example, say we wanted to make the following title, "Sprockets and * Widgets" take up as much of the full 400px of width as possible: * *

Sprockets and Widgets

* */ $.fn.stretch = function(opts) { opts = $.extend({}, $.fn.stretch.defaults, opts); if (!(opts.max >= 0) || !(opts.min >= 0)) opts.min = opts.max = 0; this.each(function() { var container = $(this), contents = container.find("> .stretch--handle"); if (!container.hasClass("stretch--resizer") || !contents) { contents = $(this).wrap("").parent(); container = contents.wrap("
").parent(); contents.css("margin", "0").css("padding", "0"); container.css("margin", "0").css("padding", "0"); // Ensures we only work with 1 line. container.css("white-space", "nowrap").css("overflow", "hidden"); } var idealWidth = container.width(), width, min = opts.min || 1, max = min; // Search for a minimum/maximum font size so we can bound our search. if (!opts.max) { do { min = max; max *= 2; container.css("font-size", max + "px"); // If the width isn't changing, then avoid an infinite loop. var realWidth = contents.width(); width = realWidth <= width ? idealWidth : realWidth; } while (width < idealWidth); } else { max = opts.max; if (min == max) container.css("font-size", max + "px"); } if (width == idealWidth) return; // Perform a binary search to find the font-size closest to the ideal. while (min < max) { var c = Math.floor((min + max) / 2); container.css("font-size", c + "px"); width = contents.width(); if (width == idealWidth) break; if (width < idealWidth) min = c + 1; else max = c; } // We may end up on the wrong side of "perfect," so we fix this. if (width > idealWidth) container.css("font-size", (max - 1) + "px"); // Adding a little bit of word spacing will bring us that much closer. var spacing = 0, origWidth = contents.width(), maxSpacing = opts.maxSpacing; do { spacing += 1; container.css("word-spacing", spacing + "px"); width = contents.width(); } while (spacing <= maxSpacing && width <= idealWidth && width > origWidth); container.css("word-spacing", (spacing - 1) + "px"); }); return this; }; $.fn.stretch.defaults = { min: 0, max: 0, maxSpacing: 0 }; })(jQuery);