Have Base.hyphenate() convert the result to lowercase.

This commit is contained in:
Jürg Lehni 2011-07-08 23:09:51 +02:00
parent bb4e71da81
commit cc00f40532

View file

@ -150,7 +150,7 @@ this.Base = Base.inject(/** @lends Base# */{
function(match) {
return match.charAt(0) + '-' + match.substring(1);
}
);
).toLowerCase();
},
/**