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 src="//cdnjs.cloudflare.com/ajax/libs/mithril/0.2.0/mithril.min.js"></script>
</head>
<body>
<script>
  var app = {}
  
  app.controller = function() {
    var ctrl = this
    
    ctrl.checked = false
    
    ctrl.check = function() {
      ctrl.checked = !ctrl.checked
    }
  }
  
  app.view = function(ctrl) {
    return [
      m('input', {
        type: 'radio',
        onclick: ctrl.check.bind(this),
        checked: ctrl.checked ? 'checked' : ''
      }),
      
      m('input', {
        type: 'radio',
        onclick: ctrl.check.bind(this),
        checked: ctrl.checked ? 'checked' : ''
      })
    ]
  }
  
  m.mount(document.body, app)
</script>
</body>
</html>
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers