From 55ed72d2aa465e0b2e092f453a8ddb1dc9775cea Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sat, 21 Nov 2009 03:14:12 +0000 Subject: [PATCH] BUGFIX Made CMSMain.js EditForm concrete rule more specifc, to avoid problems with super() git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92687 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- javascript/CMSMain.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/javascript/CMSMain.js b/javascript/CMSMain.js index 2caa41b1..bd03fc73 100644 --- a/javascript/CMSMain.js +++ b/javascript/CMSMain.js @@ -122,9 +122,8 @@ var ss_MainLayout; * @class CMS-specific form behaviour * @name ss.EditForm */ - $('#Form_EditForm').concrete('ss', function($){ + $('.CMSMain #Form_EditForm').concrete('ss', function($){ return/** @lends ss.EditForm */{ - /* onmatch: function() { // Alert the user on change of page-type - this might have implications // on the available form fields etc. @@ -134,9 +133,8 @@ var ss_MainLayout; } ); - $._super(); + this._super(); } - */ }; });