We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a07d8d commit b868b40Copy full SHA for b868b40
3 files changed
base.css
js/almcss3/config.js
@@ -3,7 +3,7 @@ var ALMCSS = ALMCSS || {};
3
ALMCSS.Config = {
4
5
DEBUG : true,
6
- VISUAL_DEBUG : true,
+ VISUAL_DEBUG : false,
7
8
ASTERISK : '*',
9
DEFAULT_SLOT : '*',
js/almcss3/template/dom.js
@@ -190,6 +190,7 @@ ALMCSS.template.dom = function() {
190
191
};
192
193
+ // http://stackoverflow.com/questions/4969605/javascript-regexp-to-camelcase-a-hyphened-css-property
194
var camelCase = function(s) {
195
return s.replace(/-([a-z])/g, function (g) { return g[1].toUpperCase() });
196
0 commit comments