Add media type icon

This commit is contained in:
JonnyWong16 2017-10-29 10:48:01 -07:00
parent 15a871889f
commit b6a634ea6f
3 changed files with 19 additions and 2 deletions

View file

@ -520,3 +520,7 @@ function forceMinMax(elem) {
elem.val(val);
}
}
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}