You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
// Generated by CoffeeScript 1.9.3
|
|
(function() {
|
|
$(function() {
|
|
var brick;
|
|
brick = "<div class='brick small'><div class='delete'>×</div></div>";
|
|
$(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);
|