Created
February 12, 2016 09:29
-
-
Save sly7-7/797ef19999d77335cb6f to your computer and use it in GitHub Desktop.
New Twiddle
This file contains hidden or 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'; | |
var FilePath = Em.Object.extend({ | |
default: null, | |
fileName: Em.computed.oneWay('default'), | |
path: Em.computed('fileName', function() { | |
return '/path/' + this.get('fileName'); | |
}) | |
}); | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle', | |
filePath: Ember.computed(function(){ | |
return FilePath.create(); | |
}), | |
actions: { | |
setFilePath() { | |
let filePath = this.get('filePath'); | |
filePath.set('default', 'untitled.txt'); | |
filePath.set('fileName', 'image.jpeg'); | |
} | |
} | |
}); |
This file contains hidden or 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.5.0", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "release", | |
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.2.0/ember-data.js", | |
"ember-template-compiler": "release" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment