diff -r c0e03c7137e3 -r 0f7d2275a88f client/js/main.js
--- a/client/js/main.js Fri Mar 29 12:03:58 2013 +0100
+++ b/client/js/main.js Fri Mar 29 18:19:47 2013 +0100
@@ -51,16 +51,26 @@
var _this = this;
Rkns.$('')
- .attr("href","#")
+ .attr({
+ href: "#",
+ title: _renkan.translate("Close bin")
+ })
.addClass("Rk-Bin-Close")
.html('×')
.appendTo(this.$)
.click(function() {
_this.destroy();
+ if (!_renkan.$.find(".Rk-Bin-Main:visible").length) {
+ _renkan.$.find(".Rk-Bin-Main:last").slideDown();
+ }
+ _renkan.resizeBins();
return false;
});
Rkns.$('')
- .attr("href","#")
+ .attr({
+ href: "#",
+ title: _renkan.translate("Refresh bin")
+ })
.addClass("Rk-Bin-Refresh")
.appendTo(this.$)
.click(function() {
@@ -226,9 +236,9 @@
'<% if (options.show_bins) { %>'
+ '<% } %>'
);