Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="//jashkenas.github.io/underscore/underscore-min.js"></script>
<script src="//jashkenas.github.io/backbone/backbone-min.js"></script>
<script src="http://marionettejs.com/downloads/backbone.marionette.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <a href="custom">Custom</a>
  <a href="generic">Generic</a>
</body>
</html>
 
var App = new Backbone.Marionette.Application();  
var AppController =  Backbone.Marionette.Controller.extend({
        initialize:function (options) {
        },
  
        customAction: function() {
          console.log('in customAction');
        }
    });
  var GenericController = Backbone.Marionette.Controller.extend({
        initialize:function (options) {
        },
        getGeneric: function(){
                console.log('in getGeneric');
        },
    });
App.appRouter = new Marionette.AppRouter({
        controller:new AppController(),
    
        appRoutes: {
          "custom": "customAction"
        }
    });
App.genericRouter = new Marionette.AppRouter({
  controller: new GenericController(),
  appRoutes: {
    "generic": "getGeneric"
  }
});
Output 300px

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