-
-
Save miguelcobain/1f322e4369a015dfdeaa090bc35b6e49 to your computer and use it in GitHub Desktop.
true-ddau-input
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
const { Component } = Ember; | |
export default Component.extend({ | |
tagName: 'input', | |
didRender() { | |
if (this.get('value')) { | |
this.element.value = this.get('value'); | |
} | |
}, | |
input(e) { | |
this.sendAction('onChange', e.target.value); | |
this.element.value = this.get('value'); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
counter: 0, | |
actions: { | |
valueChanged(v) { | |
console.log('got: ' + v); | |
this.counter++; | |
if (this.counter > 5) { | |
this.set('value', `${this.counter}`); | |
} else { | |
this.set('value', '123'); | |
} | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.9.3", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "canary", | |
"ember-data": "2.6.1", | |
"ember-template-compiler": "canary" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment