diff options
Diffstat (limited to 'javascript/app/routes')
-rw-r--r-- | javascript/app/routes/package.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/javascript/app/routes/package.js b/javascript/app/routes/package.js index 037ed97..e908ca4 100644 --- a/javascript/app/routes/package.js +++ b/javascript/app/routes/package.js @@ -8,10 +8,9 @@ export default Ember.Route.extend({ .catch((e) => {console.log(e);this.transitionTo("/package-not-found");}); }, setupController(controller, model) { - this._super(controller, model); - const packageId = this.modelFor('package').id; + this._super(controller, model); controller.set('bottomPanelVisible',false); - }, + }, actions : { openFile (filePath) { this.transitionTo('package.show.file',filePath); |