mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Fix bad call to getminInnerWidth()
This is not a function :(
This commit is contained in:
parent
22682b9c4a
commit
fbea332b0a
@ -94,7 +94,7 @@
|
||||
this.updateLayout();
|
||||
|
||||
// If this panel is open and the left hand column is smaller than the minimum, contract it instead
|
||||
if(!this.hasClass('collapsed') && ($(".blog-admin-outer").width() < this.getminInnerWidth())) {
|
||||
if(!this.hasClass('collapsed') && ($(".blog-admin-outer").width() < this.minInnerWidth) {
|
||||
this.collapsePanel();
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user