We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e4fb25 commit d9a7017Copy full SHA for d9a7017
app/site/src/App.vue
@@ -64,20 +64,20 @@ export default {
64
65
this.debounceFilter()
66
})
67
-
68
- // Also, upon page load, tf there's a hash, we filter the awesome list
69
- // right away.
70
- if (window.location.hash) {
71
- this.q = /^#(.*)/.exec(window.location.hash)[1].toLowerCase()
72
- this.debounceFilter()
73
- }
74
},
75
76
mounted() {
77
// Register lazyloading for the GitHub badges
78
const blazy = new Blazy({
79
container: '.right'
80
+
+ // Also, upon page load, tf there's a hash, we filter the awesome list
+ // right away.
+ if (window.location.hash) {
+ this.q = /^#(.*)/.exec(window.location.hash)[1].toLowerCase()
+ this.debounceFilter()
+ }
81
82
83
methods: {
0 commit comments