Initial commit

This commit is contained in:
Juho Teperi
2013-05-13 11:43:34 +03:00
commit fbf8fb087a
44 changed files with 2425 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
define([
'lodash',
'backbone',
'../models/leg'
], function (_, Backbone, Leg) {
// var stages = [];
// var data = {};
var num = 1;
var Route = Backbone.Collection.extend({
model: Leg,
comparator: function (model) {
return model.get('order');
}
});
return Route;
});