debshots/app/assets/javascripts/application.js

39 lines
1.3 KiB
JavaScript

// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery_ujs
//= require foundation
//= require fancybox
//= require cookies_eu
//= require jquery.amaran
//= require_tree .
$(function(){ $(document).foundation(); });
// Load reviews on package's details page
load_reviews = function() {
// Display message while loading reviews
// $('#reviews').html("<i>Loading reviews...</i>");
// Hide the DIV so that in can be faded in later
$('#reviews').hide();
// The URL is specified in the #reviews's DIV data attribute
var url = $('#reviews').attr('data-package-reviews-url');
$('#reviews').load(url, null,
// Fade in the reviews as soon as the DIV is loaded and filled
function(){
$(this).fadeIn('slow')
}
);
};