Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>JS Bin</title>
        <script type="text/javascript">
            ENV = {FEATURES: {'query-params-new': true}};
        </script>
        <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
        <script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js"></script>
        <script src="http://builds.emberjs.com/canary/ember.js"></script>
    </head>
    <body>
        
        <script type="text/x-handlebars">
            <button {{action "changeToRandom"}}>changed to random</button>
            <br>
            <button {{action "changeToFixed"}}>changed to fixed</button>
        </script>
    </body>
</html>
 
window.App = Ember.Application.create();
App.ApplicationController = Ember.Controller.extend({
  init: function(){
    console.log("controller initialized ------", this);
  },
  actions: {
    changeToRandom: function(){
      console.log("order ToRandom");
      this.set("revision", Math.random() );
    },
    changeToFixed: function(){
      console.log("order ToFixed");
      this.set("revision", "abc" );
    }
  },
  queryParams: ["revision"],
  revision: null,
  toggleHistory: (function() {
    console.log("revision variable changed");
  }).observes("revision")
});
Output

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

Dismiss x
public
Bin info
tomaskikutispro
0viewers