// Generated by CoffeeScript 1.9.3 (function() { $(function() { var brick; brick = "
×
"; $(document).on("click touchend", ".gridly .brick", function(event) { var $this, size; event.preventDefault(); event.stopPropagation(); $this = $(this); $this.toggleClass('small'); $this.toggleClass('large'); if ($this.hasClass('small')) { size = 140; } if ($this.hasClass('large')) { size = 300; } $this.data('width', size); $this.data('height', size); return $('.gridly').gridly('layout'); }); $(document).on("click", ".gridly .delete", function(event) { var $this; event.preventDefault(); event.stopPropagation(); $this = $(this); $this.closest('.brick').remove(); return $('.gridly').gridly('layout'); }); $(document).on("click", ".add", function(event) { event.preventDefault(); event.stopPropagation(); $('.gridly').append(brick); return $('.gridly').gridly(); }); return $('.gridly').gridly(); }); }).call(this);