Sha256: 28705a15600de1967b562b4ef6c8983d80aad613bdb6bf598981278281361a53
Contents?: true
Size: 398 Bytes
Versions: 54
Compression:
Stored size: 398 Bytes
Contents
class UITextField def sugarcube_to_s(options={}) text = self.text if text && text.length > 20 text = text[0..20] + '...' end placeholder = self.placeholder if placeholder && placeholder.length > 20 placeholder = placeholder[0..20] + '...' end super options.merge(inner: {text: text, placeholder: placeholder, firstResponder?: firstResponder?}) end end
Version data entries
54 entries across 54 versions & 1 rubygems