Sha256: c225d3356a9e6cd111c563c3d88fd5c6a133a73292d9d6619df93da317068d13
Contents?: true
Size: 457 Bytes
Versions: 11
Compression:
Stored size: 457 Bytes
Contents
var fullcart = { add: function() { Cookies.set('addtocart', true); this.changeImage(); return true; }, changeImage: function() { $('input.view-cart')[0].src = '/img/cart-full.png'; }, init: function() { if(Cookies.get('addtocart') == 'true') { fullcart.changeImage(); } } } $(document).ready(function() { fullcart.init(); }.bind(this));
Version data entries
11 entries across 11 versions & 1 rubygems