(function($) {
$(function() {
$("
")
.appendTo("body");
$("#debug-shape-templates").click(function() {
var _this = $(this);
$("html").toggleClass(_this.attr("id"));
$(this).toggleClass("debug-active");
});
$("#debug-control-toggle").click(function() {
var _this = $(this), open = "debug-open";
if (_this.is(":animated")) {
alert("aghhhh!");
return;
}
if (_this.is("."+open)) {
_this.prev().hide("fast", function() {_this.removeClass(open).html("»");});
} else {
_this.prev().show("fast", function() {_this.addClass(open).html("«");});
}
});
});
})(jQuery);