Fix bad call to getminInnerWidth()

This is not a function :(
This commit is contained in:
Jamie Barker 2015-12-21 13:17:37 +13:00
parent 22682b9c4a
commit fbea332b0a

View File

@ -94,7 +94,7 @@
this.updateLayout(); this.updateLayout();
// If this panel is open and the left hand column is smaller than the minimum, contract it instead // 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(); this.collapsePanel();
} }
}, },