From 2b2e13f7df430a98929e21795ab3e5b50634df32 Mon Sep 17 00:00:00 2001 From: micmania1 Date: Thu, 4 Feb 2016 22:06:01 +0000 Subject: [PATCH] FIX minInnerWidth should begin with upper-case M --- js/cms.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/cms.js b/js/cms.js index 15bae53..853fc32 100644 --- a/js/cms.js +++ b/js/cms.js @@ -88,13 +88,13 @@ * see LeftAndMain.Panel.js for base behaviour */ $('.blog-admin-sidebar.cms-panel').entwine({ - minInnerWidth: 620, + MinInnerWidth: 620, onadd: function() { this._super(); 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.getMinInnerWidth())) { this.collapsePanel(); } },