Skip to content

Instantly share code, notes, and snippets.

View maxkwallace's full-sized avatar

Max Wallace maxkwallace

View GitHub Profile
@maxkwallace
maxkwallace / keybase.md
Created July 3, 2017 18:37
Keybase proof

Keybase proof

I hereby claim:

  • I am maxkwallace on github.
  • I am maxkwallace (https://keybase.io/maxkwallace) on keybase.
  • I have a public key ASD0MkjgD__Knszky3Amrf3FDdFi02oPfmeTizfVQZSkFQo

To claim this, I am signing this object:

@maxkwallace
maxkwallace / application.controller.js
Created November 27, 2015 13:02
How to use ember select for static dropdown?
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
actions: {
setType: function (type) {
console.log('called with type: ' + type.toString());
this.set('type', type);
console.log('type is now: ' + this.get('type'));