Commit adc38c55 by Takumi Imai

Merge branch 'feature/1.0_check_web_dev' into 'feature/1.0_check_web'

Feature/1.0 check web dev

See merge request !112
parents 19d07c2e f1c7941f
......@@ -32,13 +32,13 @@ var ValidationUtil = {
// check text min length
CheckMinLengthForByte: function (value, len) {
if (this.GetByteCount(value) < len) return false;
if (value.length < len) return false;
return true;
},
// check text max length
CheckMaxLengthForByte: function (value, len) {
if (this.GetByteCount(value) > len) return false;
if (value.length > len) return false;
return true;
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment