From 3501dc198600932055f07835c9f382521b79ebb1 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 5 Jun 2015 08:48:22 -0800 Subject: [PATCH] Removing last of controller dir --- app/controllers/.gitkeep | 0 app/controllers/sortable.js | 18 ------------------ app/pods/species/index/controller.js | 5 ----- 3 files changed, 23 deletions(-) delete mode 100644 app/controllers/.gitkeep delete mode 100644 app/controllers/sortable.js delete mode 100644 app/pods/species/index/controller.js diff --git a/app/controllers/.gitkeep b/app/controllers/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/app/controllers/sortable.js b/app/controllers/sortable.js deleted file mode 100644 index dc16f15..0000000 --- a/app/controllers/sortable.js +++ /dev/null @@ -1,18 +0,0 @@ -import Ember from 'ember'; - -export default Ember.ArrayController.extend({ - queryParams: ['sortBy', 'sortAscending'], - sortAscending: true, - sortBy: null, // Set in subclass - // Make sortProperties computed so that we have a nice URL using sortBy - sortProperties: Ember.computed('sortBy', function() { - return [this.get('sortBy')]; - }), - actions: { - setSortBy: function(fieldName) { - this.set('sortBy', fieldName); - this.toggleProperty('sortAscending'); - return false; - } - } -}); diff --git a/app/pods/species/index/controller.js b/app/pods/species/index/controller.js deleted file mode 100644 index e6f1ac9..0000000 --- a/app/pods/species/index/controller.js +++ /dev/null @@ -1,5 +0,0 @@ -import SortableController from '../../../controllers/sortable'; - -export default SortableController.extend({ - sortBy: 'speciesName', -});