Home
last modified time | relevance | path

Searched refs:j (Results 26 – 50 of 124) sorted by last modified time

12345

/template/bootstrap3/assets/typeahead/
H A Dbootstrap3-typeahead.min.js1 (function(a,b){if(typeof module!=="undefined"&&module.exports){module.exports=b(require("jquery"))}else{if(typeof define==="function"&&define.amd){define(["jquery"],function(c){return b(c)})}else{b(a.jQuery)}}}(this,function(b){var c=function(e,d){this.$element=b(e);this.options=b.extend({},c.defaults,d);this.matcher=this.options.matcher||this.matcher;this.sorter=this.options.sorter||this.sorter;this.select=this.options.select||this.select;this.autoSelect=typeof this.options.autoSelect=="boolean"?this.options.autoSelect:true;this.highlighter=this.options.highlighter||this.highlighter;this.render=this.options.render||this.render;this.updater=this.options.updater||this.updater;this.displayText=this.options.displayText||this.displayText;this.itemLink=this.options.itemLink||this.itemLink;this.itemTitle=this.options.itemTitle||this.itemTitle;this.followLinkOnSelect=this.options.followLinkOnSelect||this.followLinkOnSelect;this.source=this.options.source;this.delay=this.options.delay;this.theme=this.options.theme&&this.options.themes&&this.options.themes[this.options.theme]||c.defaults.themes[c.defaults.theme];this.$menu=b(this.options.menu||this.theme.menu);this.$appendTo=this.options.appendTo?b(this.options.appendTo):null;this.fitToElement=typeof this.options.fitToElement=="boolean"?this.options.fitToElement:false;this.shown=false;this.listen();this.showHintOnFocus=typeof this.options.showHintOnFocus=="boolean"||this.options.showHintOnFocus==="all"?this.options.showHintOnFocus:false;this.afterSelect=this.options.afterSelect;this.afterEmptySelect=this.options.afterEmptySelect;this.addItem=false;this.value=this.$element.val()||this.$element.text();this.keyPressed=false;this.focused=this.$element.is(":focus");this.changeInputOnSelect=this.options.changeInputOnSelect||this.changeInputOnSelect;this.changeInputOnMove=this.options.changeInputOnMove||this.changeInputOnMove;this.openLinkInNewTab=this.options.openLinkInNewTab||this.openLinkInNewTab;this.selectOnBlur=this.options.selectOnBlur||this.selectOnBlur;this.showCategoryHeader=this.options.showCategoryHeader||this.showCategoryHeader};c.prototype={constructor:c,setDefault:function(e){this.$element.data("active",e);if(this.autoSelect||e){var d=this.updater(e);if(!d){d=""}this.$element.val(this.displayText(d)||d).text(this.displayText(d)||d).change();this.afterSelect(d)}return this.hide()},select:function(){var e=this.$menu.find(".active").data("value");this.$element.data("active",e);if(this.autoSelect||e){var d=this.updater(e);if(!d){d=""}if(this.changeInputOnSelect){this.$element.val(this.displayText(d)||d).text(this.displayText(d)||d).change()}if(this.followLinkOnSelect&&this.itemLink(e)){if(this.openLinkInNewTab){window.open(this.itemLink(e),"_blank")}else{document.location=this.itemLink(e)}this.afterSelect(d)}else{if(this.followLinkOnSelect&&!this.itemLink(e)){this.afterEmptySelect(d)}else{this.afterSelect(d)}}}else{this.afterEmptySelect()}return this.hide()},updater:function(d){return d},setSource:function(d){this.source=d},show:function(){var k=b.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});var h=typeof this.options.scrollHeight=="function"?this.options.scrollHeight.call():this.options.scrollHeight;var g;if(this.shown){g=this.$menu}else{if(this.$appendTo){g=this.$menu.appendTo(this.$appendTo);this.hasSameParent=this.$appendTo.is(this.$element.parent())}else{g=this.$menu.insertAfter(this.$element);this.hasSameParent=true}}if(!this.hasSameParent){g.css("position","fixed");var j=this.$element.offset();k.top=j.top;k.left=j.left}var e=b(g).parent().hasClass("dropup");var d=e?"auto":(k.top+k.height+h);var f=b(g).hasClass("dropdown-menu-right");var i=f?"auto":k.left;g.css({top:d,left:i}).show();if(this.options.fitToElement===true){g.css("width",this.$element.outerWidth()+"px")}this.shown=true;return this},hide:function(){this.$menu.hide();this.shown=false;return this},lookup:function(d){if(typeof(d)!="undefined"&&d!==null){this.query=d}else{this.query=this.$element.val()}if(this.query.length<this.options.minLength&&!this.options.showHintOnFocus){return this.shown?this.hide():this}var e=b.proxy(function(){if(b.isFunction(this.source)&&this.source.length===3){this.source(this.query,b.proxy(this.process,this),b.proxy(this.process,this))}else{if(b.isFunction(this.source)){this.source(this.query,b.proxy(this.process,this))}else{if(this.source){this.process(this.source)}}}},this);clearTimeout(this.lookupWorker);this.lookupWorker=setTimeout(e,this.delay)},process:function(d){var e=this;d=b.grep(d,function(f){return e.matcher(f)});d=this.sorter(d);if(!d.length&&!this.options.addItem){return this.shown?this.hide():this}if(d.length>0){this.$element.data("active",d[0])}else{this.$element.data("active",null)}if(this.options.items!="all"){d=d.slice(0,this.options.items)}if(this.options.addItem){d.push(this.options.addItem)}return this.render(d).show()},matcher:function(e){var d=this.displayText(e);return ~d.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(f){var g=[];var e=[];var d=[];var i;while((i=f.shift())){var h=this.displayText(i);if(!h.toLowerCase().indexOf(this.query.toLowerCase())){g.push(i)}else{if(~h.indexOf(this.query)){e.push(i)}else{d.push(i)}}}return g.concat(e,d)},highlighter:function(h){var l=this.query;if(l===""){return h}var j=h.match(/(>)([^<]*)(<)/g);var k=[];var e=[];var f;if(j&&j.length){for(f=0;f<j.length;++f){if(j[f].length>2){k.push(j[f])}}}else{k=[];k.push(h)}l=l.replace((/[\(\)\/\.\*\+\?\[\]]/g),function(i){return"\\"+i});var g=new RegExp(l,"g");var d;for(f=0;f<k.length;++f){d=k[f].match(g);if(d&&d.length>0){e.push(k[f])}}for(f=0;f<e.length;++f){h=h.replace(e[f],e[f].replace(g,"<strong>$&</strong>"))}return h},render:function(e){var g=this;var d=this;var f=false;var i=[];var h=g.options.separator;b.each(e,function(j, argument
[all...]
/template/kajukkd/
H A Dscript.js36 j = c.top + f - h,
40 y: Math.round(j)
/template/fictive/genericons/
H A Dgenericons.css19j/iLx045DX58CuELDkIU6jFZqZ1J0XcdmqiMtf+Xd+xFXdb0tSR3n6rJFzn4VcZdx4ipkBtbDr1HjUdbYsukgH0yF2dY+PsRmq…
/template/chippedsnow/
H A Dless-1.1.3.min.js28 …lace(/[#?].*$/,""),i=b.href.replace(/\?.*$/,""),j=h&&h.getItem(i),k=h&&h.getItem(i+":timestamp"),l… variable
29j=document.getElementsByTagName("link"),k=/^text\/(x-)?less$/;d.sheets=[];for(var l=0;l<j.length;l… variable
/template/flat/assets/js/
H A Dflat.min.js1j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k…
2j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=func…
H A Dflat.min2.js1j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k…
2j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=func…
H A Dhtml5shiv.min.js4j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b… function
/template/flat/
H A Dflat.min.js1j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k…
2j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=func…
/template/parallax/lib/js/
H A Djquery.mobile.custom.js22 …b), b.type = c, f = b.originalEvent, g = a.event.props, e.search(/^(mouse|click)/) > -1 && (g = j);
172 j = a.event.props.concat(i),
194 e, g, h, i, j, k;
199 j = p[i], k = 0;
200 … if (h === d && Math.abs(j.x - e) < w && Math.abs(j.y - g) < w || a.data(h, f) === j.touchID) {
211 function j(b, c, d) { function
230 d = c, j(b, d ? "scrollstart" : "scrollstop", a)
258 k(), f === a.target && j(b, "tap", a)
266 j(b, "taphold", a.Event("taphold", {
281 function j(b) { function
[all …]
H A Djquery.slimbox.js31 j(1);
66 function j(M) { function
162 w(H).stop().fadeOut(u.overlayFadeDuration, j)
H A Djquery.slimbox.min.js1j():i(r,n.nextKeys)>=0?_():i(r,n.previousKeys)>=0?M():null}function M(){return D(o)}function _(){r… function
H A Dretina-1.1.0.min.js10 …d=function(){var h=document.getElementsByTagName("img"),j=[],k,l;for(k=0;k<h.length;k++){l=h[k];j.…
H A Djquery.mobile.custom.min.js1j&&(A.touchstart=(A.touchstart||0)+1,A.touchstart===1&&F.bind("touchstart",m).bind("touchend",b).b…
/template/parallax/lib/languages/
H A Dda_DK.po612 msgstr "Tilføj venligst scripttags"
H A Dfi_FI.po995 msgstr "Käytä %1$ jäsenen soittaa Out-osiossa sivulla haluamaasi tärkeä viesti toimitetaan asiakkaa…
H A Dpl_PL.po616 msgstr "Wybierz swój styl ikony"
/template/parallax/lib/fonts/
H A Dcyberchimps.woff2 …�t3�G�6>[��&���j�ߟn��R���}_J��S��8/p�����٢[�N�E>��W��Y�/������kKL��i^�0���l�����v-N��t���Y��…
10 ��Q��Nk����j�8�P!�$-�
18 l9n>��6�wk[#�9��T�˗���R9L��X�Ԩ�"\[�!v�0Cؚ���7P� Z0*�U2�U�J����U5Bo��t�,~ jH)�P�j��C
19 …Ϛ ���!%��:��h��Q�_8�>p�t�Rp�q�s���i�+ٲ.l1C(-�#O����R�R�,�CQm~�C�-l������V�_�������s�j���xe
25 &��[�Z�&�j`���C�@� �-F�������:io?V!`�[��5
31 +�"�I�7rو�v��)-��j�s��p���4_��N-
34 nX�����j��y�N^tD�gW�������7�oo6�����ם��*g3�տ�no�����p��4N��ϸ�7�~
35j'%��Z���M�_0! �c��t')& :aنwL]����,� �r X��:�)��p �,�Fv��꜈|#W �[ZF3OI�l��m;�bE2L��иk����v��Y�…
/template/parallax/lib/bootstrap/js/
H A Dbootstrap.min.js27 j && j.preventDefault();
161 j && this.pause();
211 j && this.cycle();
364 j = e(k);
623 g = {top: j.top + j.height, left: j.left + j.width / 2 - f / 2};
626 g = {top: j.top - i, left: j.left + j.width / 2 - f / 2};
629 g = {top: j.top + j.height / 2 - i / 2, left: j.left - f};
632 g = {top: j.top + j.height / 2 - i / 2, left: j.left + j.width};
778 if (j >= h) {
825 var j = this.element, g = j.closest("ul:not(.dropdown-menu)"), f = j.attr("data-target"), h, d, i;
[all …]
/template/klean/bootstrap/js/
H A Dbootstrap.min.js6j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k…
7j=h?g:b;return null!=c&&e<=c?"top":null!=d&&i+j>=a-d&&"bottom"},c.prototype.getPinnedOffset=functi…
/template/hexa/genericons/genericons/
H A Dgenericons.css22 …VVVHBIiKOxBz2c3F+HGpVjJmjEbENVsDEL7aN7Nn38idXH6T7v9i27Qv6pzNv0x+PFQO3XC8JX/+j+y/gmypIBXkW1VFoBYdsl…
/template/bushwick/fonts/
H A DAleo-BoldItalic.woff3 �K�GSUB�����������ts�OS/2������\���`����cmap����j����7Ɓhead��D���4���6���hhea��x��� ���$…
114 �7�A(�! �Ȇj�j���2��PK�[H�/[Y8
315 pd(��2j�G�a>�sx��b!M4Thڐ����y��e4���w0G��j �-ZH�a�Q�w� �
334 r8�6�b��(���2�����j�zr�������Q`G
441 �f�hEe�p�p�j�Ȋ���j�kV�{͍����5�2g;
455 j���
491 ���R�8�I�t�� ��.���tt�j�v_)��a'S�%�!V�4*�� ���g�j
549 �QF!L��Se�Y[�I��I�'=�-�.�r���Eٰ�G-2*�y�HSiB�����?{� �������; Qj���"��"x��.=3���&`�F,��j��…
641 襙A���X�Uj
658 …�������/�����MZe�V0�k��QA�x����4�a � �V(Ղi��������dn8�4��Z*X����j&jڈJ��"���BGz-滄�NX�ِ�…
[all …]
H A DAleo-Bold.woff1 …4_@GPOS�RD�����3h2�dGSUB�Q���������}�OS/2������\���`����cmap�����j����7Ɓhead��D���2��…
69 …by����m��[���O����<�|Hy(���r���p1h�f�%��mӨ����������ՄX�$�.�D��o'��.FR�j�E�`� *5EAʌ�p���A�E
73 ���&k�ӟ�~�_y@h�t�j@,j��c��Tc���p��A�
166 yJ0B�H����>~�70��6��~��RA�����]F��f�\H��p�%c�ݠ�<����x�H ���ԕK� g��Le�*)\���L�(R�қj���|…
175 ʅ��rN?:T ����j�JEӼ��<������
298 p;�(j
431 ��G�j
507 ���j=�yx�+
514j
638 …3ԟ��/��%��u�G\x�;>b�K��>���� ��L-�a��X��b;�؁�j���x�^j�����^j���x�^j�����>j�…
[all …]
/template/bushwick/
H A Dmasonry3.3.8.min.js10j=this[h],k=a.data(j,b);if(k)if(a.isFunction(k[e])&&"_"!==e.charAt(0)){var l=k[e].apply(k,g);if(vo…
/template/boozurk/tinynav/
H A Dtinynav.js40 var j;
41 for (j = 0; j < $(this).parents('ul, ol').length - 1; j++) {
H A Dtinynav.min.js2 (function(a,i,g){a.fn.tinyNav=function(j){var b=a.extend({active:"selected",header:"",label:""},j);… argument

12345