Sha256: 9a1fca821612f55d458777f911324dbd4a856292049cb71317d7a5e9932e25ca
Contents?: true
Size: 471 Bytes
Versions: 5
Compression:
Stored size: 471 Bytes
Contents
$(document).ready(function(){ $('.button-review').click(function (event) { event.preventDefault(); $(this).hide(); $(".ratings").hide(); $.ajax({ type: 'GET', url: this.href, data: ({authenticity_token: jQuery('meta[name="csrf-token"]').attr('content')}), beforeSend: function(r){ $('#new_review').html('<p style="padding: 20px">Loading <img src="/assets/ratyloader.gif"/></p>');}, success: function(r){ $('#new_review').html(r);} }); }); });
Version data entries
5 entries across 5 versions & 1 rubygems