From cc00f4053202a822a98c61b2b2b484ba3e6a0ac4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Fri, 8 Jul 2011 23:09:51 +0200 Subject: [PATCH] Have Base.hyphenate() convert the result to lowercase. --- src/core/Base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Base.js b/src/core/Base.js index 11138acc..b6f580a1 100644 --- a/src/core/Base.js +++ b/src/core/Base.js @@ -150,7 +150,7 @@ this.Base = Base.inject(/** @lends Base# */{ function(match) { return match.charAt(0) + '-' + match.substring(1); } - ); + ).toLowerCase(); }, /**