mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 07:19:57 -05:00
Have Base.hyphenate() convert the result to lowercase.
This commit is contained in:
parent
bb4e71da81
commit
cc00f40532
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ this.Base = Base.inject(/** @lends Base# */{
|
||||||
function(match) {
|
function(match) {
|
||||||
return match.charAt(0) + '-' + match.substring(1);
|
return match.charAt(0) + '-' + match.substring(1);
|
||||||
}
|
}
|
||||||
);
|
).toLowerCase();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue