summaryrefslogtreecommitdiffstats
path: root/pygments/examples/modular-backbone/js/app.js
blob: d1b1f0525c500312f73ac378d1a0ea2adf170f54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Filename: app.js
define([
  'jQuery', 
  'Underscore', 
  'Backbone',
  'router', // Request router.js
], function($, _, Backbone, Router){
  var initialize = function(){
    // Pass in our Router module and call it's initialize function
    Router.initialize();
  }

  return { 
    initialize: initialize
  };
});