Sha256: e54894a84fdadbe1f762f317788a1cda9fa0a9c5425e3ce4fa7603715c908c2c
Contents?: true
Size: 446 Bytes
Versions: 4
Compression:
Stored size: 446 Bytes
Contents
SC.CheckboxSupport = { didCreateLayer: function() { this.$('input').change(jQuery.proxy(function() { SC.RunLoop.begin(); this.notifyPropertyChange('value'); SC.RunLoop.end(); }, this)); }, value: function(key, value) { if (value !== undefined) { this.$('input').attr('checked', value); } else { value = this.$('input').attr('checked'); } return value; }.property().idempotent() };
Version data entries
4 entries across 4 versions & 2 rubygems