phodal/freerice

View on GitHub
web/app.js

Summary

Maintainability
A
0 mins
Test Coverage
"use strict";

define([
    'jquery',
    'underscore',
    'backbone',
    'router'
], function($, _, Backbone, Router){

    var initialize = function(){
        this.router = new Router();
    };

    return {
        initialize: initialize
    };
});