I hereby claim:
- I am gustaff-weldon on github.
- I am gustaff_weldon (https://keybase.io/gustaff_weldon) on keybase.
- I have a public key ASAJlckoZ2zeGYPHeM-WOGKlVSkKEImqYA_RK0ytt3ykqAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle', | |
| init() { | |
| this.set('parent', this.store.createRecord('parent', {name:'foo'})) | |
| }, | |
| actions: { |
| import Ember from 'ember'; | |
| import config from './config/environment'; | |
| const Router = Ember.Router.extend({ | |
| location: 'none', | |
| rootURL: config.rootURL | |
| }); | |
| Router.map(function() { | |
| this.route('test') |
| .circle-container { | |
| width: 20%; | |
| } | |
| .circle { | |
| /* circle code start */ | |
| border-radius: 50%; | |
| width: 100%; | |
| height: auto; | |
| padding-top: 100%; |
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| .button { | |
| background: #f06; | |
| padding: 20px; | |
| } | |
| .bg-trans:hover { |
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| .button { | |
| background: #f06; | |
| padding: 20px; | |
| } | |
| .bg-trans:hover { |
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| .button { | |
| background: #f06; | |
| padding: 20px; | |
| } | |
| .bg-trans:hover { |
| .container { | |
| width: 400px; | |
| } | |
| img { | |
| float: left; | |
| overflow: hidden; | |
| } |
| document.save() | |
| .then(() => { | |
| ... some succcess logic handler ... | |
| }) | |
| .catch((error) => { | |
| // mark propertiesModel as invalid - pass errors from server | |
| if (Ember.typeOf(error.errors) === 'array') { | |
| let store, modelClass, serverErrors, propertiesServerErrors | |
| store = this.get('store') |
| body { | |
| font-family: Arial | |
| } | |
| .box { | |
| padding: 20px; | |
| color: white; | |
| } | |
| @keyframes background-position{ | |
| from{ background-position: 0 0;} |