Skip to content

Commit f64bd67

Browse files
author
Angelo Dini
committed
Merge pull request django-cms#2311 from abossard/patch-1
Sideframe is not shown (Google Chrome, Mac)
2 parents 96be16c + 085c1aa commit f64bd67

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cms/static/cms/js/plugins/cms.toolbar.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,7 @@ $(document).ready(function () {
730730
if(this.settings.sideframe.maximized) this._maximizeSideframe();
731731
// otherwise do normal behaviour
732732
if(!this.settings.sideframe.hidden && !this.settings.sideframe.maximized) {
733+
this.sideframe.show();
733734
if(animate) {
734735
this.sideframe.animate({ 'width': width }, this.options.sideframeDuration);
735736
this.body.animate({ 'margin-left': width }, this.options.sideframeDuration);
@@ -1224,4 +1225,4 @@ $(document).ready(function () {
12241225
});
12251226

12261227
});
1227-
})(CMS.$);
1228+
})(CMS.$);

0 commit comments

Comments
 (0)