Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <link href="//cdn.jsdelivr.net/picnicss/4.1.1/picnic.min.css" rel="stylesheet">
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <h1>Hello Mag.JS!</h1>
  <a target="_top" href="https://github.com/magnumjs/mag.js">GitHub</a>
  <hr/>
  <div id="demo">
    <clone></clone>
    <div id="counter">
      <button>COUNTER
        <count>0</count>
      </button>
    </div>
  </div>
  <div class="hide">
    <div id="error" style="color:red">
      Error:
      <message></message>
    </div>
  </div>
  <script src="//rawgit.com/magnumjs/mag.js/master/mag-latest.min.js"></script>
  <script src="//rawgit.com/magnumjs/mag.js/master/dist/mag.addons.0.22.min.js"></script>
</body>
</html>
 
/* MagJS Example - Boilerplate v0.2 */
// independent component
var counter = mag.create('counter', {
  view: function(state, props) {
    state.button = {
      count: state.count,
      _onClick: function() {
        props.onClick(++state.count);
      }
    };
  }
});
var error = mag.create('error', {
  view: function(state, props) {
    state.message = props.message;
  }
});
var app = {
  willload:function () {
  app.counter= this.props.counter
},
  view: function(state, props) {
    state.clone = app.counter % 2 ? counter({
      key:1,
      onClick: function(count) {
        app.counter = count;
      }
    }) : error({
      message: 'even?'
    });
  }
}
// parent module
mag.module("demo", app, {
  counter: 1
});
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers