/home/techb158/balacoffee.com/wp-content/plugins/coming-soon/public/js
NameSizeModeActions
animate-dynamic.js197230644editdlrm
dynamic-text.js336850644editdlrm
iframeResizer.contentWindow.js344900644editdlrm
iframeResizer.contentWindow.min.js133890644editdlrm
iframeResizer.js320530644editdlrm
iframeResizer.min.js123800644editdlrm
imagesloaded.pkgd.min.js55940644editdlrm
img-previewer.js233680644editdlrm
img-previewer.min.js112710644editdlrm
isotope.pkgd.js913980644editdlrm
jquery-numerator.js41330644editdlrm
jquery-numerator.min.js19060644editdlrm
jquery.animation.js49400644editdlrm
jquery.animation.min.js9160644editdlrm
jquery.event.move.js145300644editdlrm
jquery.lettering.js18420644editdlrm
jquery.lettering.min.js6850644editdlrm
jquery.textillate.js111880644editdlrm
jquery.textillate.min.js54160644editdlrm
jquery.twentytwenty.js54140644editdlrm
jquery.twentytwenty.min.js54140644editdlrm
lightbox.js200310644editdlrm
lightbox.min.js103830644editdlrm
masonry.pkgd.js633160644editdlrm
minimasonry.js74930644editdlrm
sp-animateeffects.js323330644editdlrm
sp-animateeffects.min.js107200644editdlrm
sp-scripts.js1034070644editdlrm
sp-scripts.min.js456400644editdlrm
toolbar.js36600644editdlrm
tooltipster.bundle.min.js399000644editdlrm
tsparticles.js2967100644editdlrm
tsparticles.min.js1406300644editdlrm
tubular.js69740644editdlrm
xdLocalStorage.js44390644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/coming-soon/public/js/jquery.lettering.js (1842B)
"use strict"; /*global jQuery */ /*! * Lettering.JS 0.6.1 * * Copyright 2010, Dave Rupert http://daverupert.com * Released under the WTFPL license * http://sam.zoy.org/wtfpl/ * * Thanks to Paul Irish - http://paulirish.com - for the feedback. * * Date: Mon Sep 20 17:14:00 2010 -0600 */ (function ($) { function injector(t, splitter, klass, after) { var a = t.text().split(splitter), inject = ''; if (a.length) { $(a).each(function (i, item) { inject += '' + item + '' + after; }); t.empty().append(inject); } } var methods = { init: function init() { return this.each(function () { injector($(this), '', 'char', ''); }); }, words: function words() { return this.each(function () { injector($(this), ' ', 'word', ' '); }); }, lines: function lines() { return this.each(function () { var r = "eefec303079ad17405c889e092e105b0"; // Because it's hard to split a
tag consistently across browsers, // (*ahem* IE *ahem*), we replaces all
instances with an md5 hash // (of the word "split"). If you're trying to use this plugin on that // md5 hash string, it will fail because you're being ridiculous. injector($(this).children("br").replaceWith(r).end(), r, 'line', ''); }); } }; $.fn.lettering = function (method) { // Method calling logic if (method && methods[method]) { return methods[method].apply(this, [].slice.call(arguments, 1)); } else if (method === 'letters' || !method) { return methods.init.apply(this, [].slice.call(arguments, 0)); // always pass an array } $.error('Method ' + method + ' does not exist on jQuery.lettering'); return this; }; })(jQuery);