Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit a4b0f02

Browse files
authored
Merge pull request #1722 from rmisio/1720
disabling caching of the settings page
2 parents ffe989c + d90ff9f commit a4b0f02

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

js/views/settingsVw.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ module.exports = pageVw.extend({
133133
this.listenTo(app.router, 'cache-reattached', this.onCacheReattached);
134134
},
135135

136+
// disabling caching on settings for now -- too much
137+
// edge case overhead, like #1720
138+
cacheExpires: 0,
139+
136140
onCacheReattached: function(e) {
137141
var splitRoute = e.route.split('/'),
138142
state = splitRoute[1];
@@ -210,7 +214,6 @@ module.exports = pageVw.extend({
210214
},
211215

212216
render: function(){
213-
console.log("render")
214217
var self = this;
215218
this.shownMods = []; //reset to blank
216219

0 commit comments

Comments
 (0)