aboutsummaryrefslogtreecommitdiff
path: root/javascript/app/routes/package/show/file.js
diff options
context:
space:
mode:
authorAvi Dessauer <avi.the.coder@gmail.com>2019-08-21 06:03:31 -0400
committerAlexey Kiryushin <alexey.a.kiryushin@gmail.com>2019-08-21 13:03:31 +0300
commitaf41ab40e1fc4888d1873a9ffe681ddafdfb4ee0 (patch)
tree219315a1ef02ae0d0f21889e7b88e08318b308a2 /javascript/app/routes/package/show/file.js
parent5295ac7f7f26c3a43f0fe9b9c826e876b29cf666 (diff)
Delete trailing whitespace (#42)
Diffstat (limited to 'javascript/app/routes/package/show/file.js')
-rw-r--r--javascript/app/routes/package/show/file.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/javascript/app/routes/package/show/file.js b/javascript/app/routes/package/show/file.js
index ead6ee8..568d288 100644
--- a/javascript/app/routes/package/show/file.js
+++ b/javascript/app/routes/package/show/file.js
@@ -3,25 +3,25 @@ import Ember from 'ember';
export default Ember.Route.extend({
store : Ember.inject.service(),
model : function (params) {
- const packageInfo = this.modelFor('package');
- if(packageInfo.modules[params.filePath]) {
+ const packageInfo = this.modelFor('package');
+ if(packageInfo.modules[params.filePath]) {
return this.get('store').loadHaskellModule(packageInfo.id,params.filePath)
- .catch((e) => {console.log(e);this.transitionTo("/not-found");});
+ .catch((e) => {console.log(e);this.transitionTo("/not-found");});
} else {
return this.get('store').loadFile(packageInfo.id,params.filePath)
- .then((result) => {
+ .then((result) => {
document.title = packageInfo.id;
return result;
})
.catch((e) => {console.log(e);this.transitionTo("/not-found");});
}
},
- afterModel (model) {
+ afterModel (model) {
document.title = model.id + " - " + this.modelFor('package').id;
},
actions : {
- didTransition : function () {
- this.send("fileOpened",this.currentModel.id);
- }
+ didTransition : function () {
+ this.send("fileOpened",this.currentModel.id);
+ }
}
});