Skip to content

Commit

Permalink
another file
Browse files Browse the repository at this point in the history
  • Loading branch information
tlevine committed Nov 8, 2013
1 parent 2f25cb2 commit 0e15e4e
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions client/js/collections/applications.js
@@ -1,17 +1,15 @@
define([
'jquery',
'lodash',
'backbone',
'models/application'
], function($, _, Backbone, applicationsModel){
var applicationsCollection = Backbone.Collection.extend({
model: applicationsModel,
url: '/applications',
initialize: function(){
var $ = require('jquery'),
, _ = require('lodash'),
, Backbone = require('backbone'),
, applicationsModel = require('./models/application')

}
var applicationsCollection = Backbone.Collection.extend({
model: applicationsModel,
url: '/applications',
initialize: function(){

});
}

return applicationsCollection;
});

return applicationsCollection;

0 comments on commit 0e15e4e

Please sign in to comment.