From fbea332b0a17b58000bdf3593813edbd2c29e5e5 Mon Sep 17 00:00:00 2001 From: Jamie Barker Date: Mon, 21 Dec 2015 13:17:37 +1300 Subject: [PATCH] Fix bad call to getminInnerWidth() This is not a function :( --- js/cms.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/cms.js b/js/cms.js index 15bae53..3b90cd6 100644 --- a/js/cms.js +++ b/js/cms.js @@ -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(); } },