Browse Source

added comment to tocamelcase regex

pull/395/head
Yunus Emre Kalkan 8 years ago
parent
commit
3b59a95a57
  1. 5
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js

5
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js

@ -60,7 +60,10 @@
};
var toCamelCase = function(str) {
var regexs = [/(^[A-Z])/, /((\.)[A-Z])/];
var regexs = [
/(^[A-Z])/, // first char of string
/((\.)[A-Z])/ // first char after a dot (.)
];
regexs.forEach(
function(regex) {

Loading…
Cancel
Save