Sha256: c8e485e4fe3faacc3bc8061e42f40997b079fd9b554e32fb965369ac8860f81f
Contents?: true
Size: 920 Bytes
Versions: 4
Compression:
Stored size: 920 Bytes
Contents
# ----------------------------------------------------------------------------- # Author: Alexander Kravets <alex@slatestudio.com>, # 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 =$ "<input type='password' name='#{ @name }' value='#{ @value }' />" @$el.append @$input # PUBLIC ================================================ updateValue: (@value) -> @$input.val(@value) chr.formInputs['password'] = InputPassword
Version data entries
4 entries across 4 versions & 1 rubygems