Skip to content

Commit

Permalink
fixing overlay bug, removing prefetch
Browse files Browse the repository at this point in the history
fixing overlay index bug and removing js prefetch to reduce files loaded
  • Loading branch information
rwampler committed Jul 13, 2018
1 parent c59502b commit 77afab5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ module.exports = {
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Open+Sans|Varela+Round|Open+Sans+Condensed:300' }
]
},
render: {
resourceHints: false
},
generate: {
fallback: false
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ export default class SpriteOverlay extends Sprite

increment_counter: (tile_info, counter) ->
if @is_underlay
counter.underlay = 0
counter.underlay++
else
counter.overlay = 0
counter.overlay++

0 comments on commit 77afab5

Please sign in to comment.