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

Commit 620eb9b

Browse files
committed
removing unused var
1 parent 577fcc2 commit 620eb9b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

js/router.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,7 @@ module.exports = Backbone.Router.extend({
227227
// cachedAt is updated and the user has up until the view's 'cacheExpires' amount of
228228
// time to come back to it in it's current state.
229229
for (var key in this.viewCache) {
230-
let cached = this.viewCache[key],
231-
curHash = location.hash.slice(1);
230+
let cached = this.viewCache[key];
232231

233232
if (
234233
cached.view === this.view &&

0 commit comments

Comments
 (0)