Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ember Starter Kit</title>
  <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/2.1.0/normalize.css">
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  <script src="http://builds.emberjs.com/tags/v2.6.0/ember.debug.js"></script>
  <script src="http://builds.emberjs.com/tags/v2.6.0/ember-template-compiler.js"></script>
</head>
<body>
  <div id='app'></div>
  <pre id="logs"></pre>
  
  <script type="text/x-handlebars">
    <h2>rwjblue's Ember JSBins</h2>
    
    {{nice-getter bar="derp"}}
    {{annoying-getter bar="huh?!?"}}
    {{medium-annoying-getter bar="huh?!?"}}
  </script>
  <script type="text/x-handlebars" id="components/nice-getter">
    {{bar}} - {{fuzz}}
  </script>
  <script type="text/x-handlebars" id="components/annoying-getter">
    {{bar}} - {{fuzz}}
  </script>
  <script type="text/x-handlebars" id="components/medium-annoying-getter">
    {{bar}} - {{fuzz}}
  </script>
</body>
</html>
 
/* Put your CSS here */
html, body {
    margin: 20px;
}
 
class Getter {
  constructor(getter) {
    this.isDescriptor = true;
    this._getter = getter;
  }
  get(obj) {
    return this._getter.call(obj);
  }
  teardown() { }
}
function getter(fn) {
  return new Getter(fn);
}
var App = Ember.Application.create({
  rootElement: '#app',
  LOG_RESOLVER: true
});
App.Router.map(function() {
});
App.ApplicationRoute = Ember.Route.extend({
  actions: {
    error: function(error) {
      log(error.message);
    }
  }  
});
App.NiceGetterComponent = Ember.Component.extend({
  get fuzz() {
    return this.bar;
  }
});
App.MediumAnnoyingGetterComponent = Ember.Component.extend({
  fuzz: getter(function() {
    return this.bar;
  })
});
App.AnnoyingGetterComponent = Ember.Component.extend({});
Object.defineProperty(App.AnnoyingGetterComponent.prototype, 'fuzz', {
  get: function() {
    return this.bar;
  }
});
Ember.onerror = function(error) {
  log(error.stack);
};
function log() {
  var msg = [].slice.call(arguments).join(' ');
  logs.insertBefore(document.createTextNode("\n" + msg), logs.firstChild);
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
rwjbluepro
0viewers