@Luzifr: This CSS is a broken prototype, fix please. Furthermore Firefox seems to be completely retarded, hiding the span at all.
opacity: 1.0;
}
+.collapsibleSidebar {
+ -webkit-transition: width .5s linear;
+ -moz-transition: width .5s linear;
+ -ms-transition: width .5s linear;
+ -o-transition: width .5s linear;
+ transition: width .5s linear;
+
+ width: 100%;
+}
+.collapsibleSidebar.collapsedSidebar {
+ overflow: hidden;
+ width: 0%;
+}
}
this._visible = true;
+ this.element.parent('div').removeClass('collapsedSidebar');
+ this._button.html('«');
+
+ /*
this.element.wcfBlindIn('horizontal', $.proxy(function() {
this._button.html('«');
}, this));
+ */
},
/**
}
this._visible = false;
+ this.element.parent('div').addClass('collapsedSidebar');
+ this._button.html('»');
+
+ /*
this.element.wcfBlindOut('horizontal', $.proxy(function() {
this._button.html('»');
}, this));
+ */
}
});