qwizkool / QwizKoolNode

QwizKool Node.js based implementation
0 stars 0 forks source link

Text field restrictions #57

Closed kgvinod closed 11 years ago

kgvinod commented 11 years ago
kgvinod commented 11 years ago

The constants required for above limits should be added to public/app/app_config.js (no magic numbers should be used elsewhere)

bambalakkat commented 11 years ago

usage example App.appConfig.MAX_COMMENT_SIZE_IN_CHARS

Induc commented 11 years ago

Restrict email and password size to 64 characters. (done). Need to do textarea character limitation.

bambalakkat commented 11 years ago

did not use App.appConfig. directly added limits as html attributes

Induc commented 11 years ago

Added text feild sizing for email and password using app_config constants

kgvinod commented 11 years ago

Remove indications/popups from the email and password fields. Just truncate when size exceeds.

Induc commented 11 years ago

Removed popover indication and truncated when size exceeds. Did this for comment size restriction to 1000 characters. email and password size restriction to 64 characters. title to 250 characters and description to 1000 characters.

kgvinod commented 11 years ago

Done