Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

Commit

Permalink
Removed useless classes
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgnlez committed Nov 19, 2015
1 parent ffcd2d8 commit 0fb8e29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
define([
'mps',
'underscore',
'countries/models/CountryModel',
'countries/presenters/PresenterClass',
'widgets/collections/WidgetCollection'
], function(mps, _, CountryModel, PresenterClass, WidgetCollection) {
], function(mps, _, PresenterClass, WidgetCollection) {

'use strict';

Expand All @@ -14,7 +13,6 @@ define([
this.view = view;
this._super();

this.CountryModel = CountryModel;
this.widgetCollection = new WidgetCollection()

this.status = new (Backbone.Model.extend({
Expand Down
3 changes: 1 addition & 2 deletions app/assets/javascripts/countries/views/CountryShowView.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
define([
'backbone',
'countries/models/CountryModel',
'countries/views/show/CountryShowHeaderView',
'countries/views/show/TabsView',
'countries/views/show/CountryModalView',
'countries/views/show/WidgetGridView'
], function(Backbone, CountryModel, CountryShowHeaderView,
], function(Backbone, CountryShowHeaderView,
TabsView, CountryModalView, WidgetGridView) {

'use strict';
Expand Down

0 comments on commit 0fb8e29

Please sign in to comment.