I hereby claim:
- I am mikeu on github.
- I am munderwood (https://keybase.io/munderwood) on keybase.
- I have a public key whose fingerprint is 93C8 B029 6CA7 0968 E578 58CF 1456 6BA0 185F B753
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying that +munderwood is my blockchain ID. https://onename.com/munderwood |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
db: Ember.computed('refreshDb', function() { | |
let dump = window.server.schema.db.dump(); | |
return JSON.stringify(dump, null, 2); | |
}), |
import Ember from 'ember'; | |
import validateLessThan from '../validators/validateLessThanAttr'; | |
export default Ember.Controller.extend({ | |
pairValidations: { | |
smaller: validateLessThan('larger'), | |
}, | |
}); |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
currentPage: 1, | |
filteredLastPage: 8, | |
actions: { | |
import Vue from 'vue' | |
import {DataStore, Record} from 'js-data' | |
// Define a base class that enables property-level vue reactivity and, optionally does so at the relationship-level. | |
export class VueReactiveRecord extends Record { | |
constructor (...args) { | |
// Among other things, this will apply js-data schema if configured to do so; be sure to do `track: true`. | |
super(...args); | |