# ----------------------------------------------------------------------------- # Author: Alexander Kravets , # Slate Studio (http://www.slatestudio.com) # # Coding Guide: # https://github.com/thoughtbot/guides/tree/master/style/coffeescript # ----------------------------------------------------------------------------- # ----------------------------------------------------------------------------- # INPUT PASSWORD # ----------------------------------------------------------------------------- class @InputPassword extends InputString # PRIVATE =============================================== _add_input: -> @$input =$ "" @$el.append @$input # PUBLIC ================================================ updateValue: (@value) -> @$input.val(@value) chr.formInputs['password'] = InputPassword