aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
blob: 68c959b0d7b2864a550c7f08b5d3aee2d3067a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Backbone from 'backbone';
import TestView from './view';
import _ from 'underscore';
import Http from './http';

Backbone.history.start();

class Index {
    constructor() {
        Http.config = {
            baseURL: 'http://demo1393194.mockable.io/'
        };
        new TestView(); //MainView

    }
}

new Index();