Skip to content

Instantly share code, notes, and snippets.

View raymondjcox's full-sized avatar
:shipit:
Shipping

Raymond Cox raymondjcox

:shipit:
Shipping
View GitHub Profile
I hereby claim:
* I am raymondjcox on github.
* I am raymondcox (https://keybase.io/raymondcox) on keybase.
* I have a public key whose fingerprint is 2028 179B 80E5 AADA 18AE 3CF0 FF02 383F AA76 73E7
To claim this, I am signing this object:
```json
{
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
value: '',
maxLength: Ember.computed('value.length', function() {
if (this.get('value.length') > 10) {
return this.get('value.length');
} else {
return 9000;