/home/desid573/public_html/eway/pdd/app/webroot/admin/plugins
NameSizeModeActions
amcharts/-0755rm
angularjs/-0755rm
backstretch/-0755rm
bootbox/-0755rm
bootstrap/-0755rm
bootstrap-colorpicker/-0755rm
bootstrap-confirmation/-0755rm
bootstrap-contextmenu/-0755rm
bootstrap-datepaginator/-0755rm
bootstrap-datepicker/-0755rm
bootstrap-daterangepicker/-0755rm
bootstrap-datetimepicker/-0755rm
bootstrap-editable/-0755rm
bootstrap-fileinput/-0755rm
bootstrap-growl/-0755rm
bootstrap-gtreetable/-0755rm
bootstrap-hover-dropdown/-0755rm
bootstrap-markdown/-0755rm
bootstrap-maxlength/-0755rm
bootstrap-modal/-0755rm
bootstrap-pwstrength/-0755rm
bootstrap-select/-0755rm
bootstrap-selectsplitter/-0755rm
bootstrap-sessiontimeout/-0755rm
bootstrap-summernote/-0755rm
bootstrap-switch/-0755rm
bootstrap-tabdrop/-0755rm
bootstrap-timepicker/-0755rm
bootstrap-toastr/-0755rm
bootstrap-touchspin/-0755rm
bootstrap-wizard/-0755rm
bootstrap-wysihtml5/-0755rm
carousel-owl-carousel/-0755rm
ckeditor/-0755rm
clockface/-0755rm
countdown/-0755rm
datatables/-0755rm
dropzone/-0755rm
fancybox/-0755rm
flot/-0755rm
font-awesome/-0755rm
fuelux/-0755rm
fullcalendar/-0755rm
gmaps/-0755rm
gritter/-0755rm
gritter1/-0755rm
icheck/-0755rm
ion.rangeslider/-0755rm
jcrop/-0755rm
jqgrid/-0755rm
jquery-bootpag/-0755rm
jquery-easypiechart/-0755rm
jquery-file-upload/-0755rm
jquery-idle-timeout/-0755rm
jquery-inputmask/-0755rm
jquery-knob/-0755rm
jquery-minicolors/-0755rm
jquery-mixitup/-0755rm
jquery-multi-select/-0755rm
jquery-nestable/-0755rm
jquery-notific8/-0755rm
jquery-slimscroll/-0755rm
jquery-tags-input/-0755rm
jquery-ui/-0755rm
jquery-ui-touch-punch/-0755rm
jquery-validation/-0755rm
jqvmap/-0755rm
jstree/-0755rm
morris/-0755rm
nouislider/-0755rm
pace/-0755rm
plupload/-0755rm
rateit/-0755rm
select2/-0755rm
simple-line-icons/-0755rm
slider-layer-slider/-0755rm
slider-revolution-slider/-0755rm
tabdrop/-0755rm
typeahead/-0755rm
uniform/-0755rm
zoom/-0755rm
excanvas.min.js193140644editdlrm
holder.js202600644editdlrm
jquery-migrate.min.js71990644editdlrm
jquery.blockui.min.js95300644editdlrm
jquery.cokie.min.js13840644editdlrm
jquery.easing.js81010644editdlrm
jquery.input-ip-address-control-1.0.min.js33570644editdlrm
jquery.min.js959300644editdlrm
jquery.min.map1420100644editdlrm
jquery.mockjax.js162080644editdlrm
jquery.parallax.js17700644editdlrm
jquery.pulsate.min.js16770644editdlrm
jquery.scrollTo.min.js22520644editdlrm
jquery.sparkline.min.js432470644editdlrm
moment.min.js323640644editdlrm
respond.min.js40470644editdlrm
Edit: /home/desid573/public_html/eway/pdd/app/webroot/admin/plugins/jquery.parallax.js (1770B)
/* Plugin: jQuery Parallax Version 1.1.3 Author: Ian Lunn Twitter: @IanLunn Author URL: http://www.ianlunn.co.uk/ Plugin URL: http://www.ianlunn.co.uk/plugins/jquery-parallax/ Dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php http://www.gnu.org/licenses/gpl.html */ (function( $ ){ var $window = $(window); var windowHeight = $window.height(); $window.resize(function () { windowHeight = $window.height(); }); $.fn.parallax = function(xpos, speedFactor, outerHeight) { var $this = $(this); var getHeight; var firstTop; var paddingTop = 0; //get the starting position of each element to have parallax applied to it $this.each(function(){ firstTop = $this.offset().top; }); if (outerHeight) { getHeight = function(jqo) { return jqo.outerHeight(true); }; } else { getHeight = function(jqo) { return jqo.height(); }; } // setup defaults if arguments aren't specified if (arguments.length < 1 || xpos === null) xpos = "50%"; if (arguments.length < 2 || speedFactor === null) speedFactor = 0.1; if (arguments.length < 3 || outerHeight === null) outerHeight = true; // function to be called whenever the window is scrolled or resized function update(){ var pos = $window.scrollTop(); $this.each(function(){ var $element = $(this); var top = $element.offset().top; var height = getHeight($element); // Check if totally above or totally below viewport if (top + height < pos || top > pos + windowHeight) { return; } $this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px"); }); } $window.bind('scroll', update).resize(update); update(); }; })(jQuery);