We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a91c167 commit 6ce03cdCopy full SHA for 6ce03cd
tests/dummy/app/controllers/application.js
@@ -23,17 +23,17 @@ export default Controller.extend({
23
actions: {
24
applyChanges(field) {
25
if (field) {
26
- this.get('buffer').applyBufferedChanges([field]);
+ this.buffer.applyBufferedChanges([field]);
27
} else {
28
- this.get('buffer').applyBufferedChanges();
+ this.buffer.applyBufferedChanges();
29
}
30
},
31
32
discardChanges(field) {
33
34
- this.get('buffer').discardBufferedChanges([field]);
+ this.buffer.discardBufferedChanges([field]);
35
36
- this.get('buffer').discardBufferedChanges();
+ this.buffer.discardBufferedChanges();
37
38
39
0 commit comments